Fixed
Created: Nov 21, 2014
Updated: Dec 3, 2018
Resolved Date: Feb 12, 2015
Found In Version: 6.0.0.16
Fix Version: 6.0.0.17
Severity: Standard
Applicable for: Wind River Linux 6
Component/s: Docs
Wind River Linux USER's GUIDE 6.0
(wind_river_linux_users_guide_6.0.pdf)
Userspace Development
Adding an Application to a Root File System with fs_final*.sh Scripts
The "Adding an Application to a Root File System with fs_final*.sh Scripts"
does not work in WRLinux-6.0.
And the "Adding an Application to a Root File System with fs_final*.sh Scripts"
works in WRLinux-5.0.1.
If it added the following configure options:
--with-layer=examples/fs-final
--with-template=feature/example-fs-final
Then, the following fs_final.sh works.
<project>/layers/examples/fs-final/templates/feature/example-fs-final/fs_final.sh
Step 1 Create the fs_final*.sh script for the application.
a) Navigate to the platform project top-level directory. For example:
$ ~Builds/qemux86-64_small
b) Create the fs_finalfibonacci.sh script with vi.
$ vi layers/local/conf/image_final/fs_final_fibonacci.sh
c) Enter or copy the following text.
#
# Add the fibonacci binary to the root file system
#
make -C /home/revo/Builds/qemux86-64_small/Fibonacci
cp /home/revo/Builds/qemux86-64_small/Fibonacci/fibonacci usr/bin
$ make
fs_final_fibonacci.sh does not work.