Change Yocto RootFS

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Change Yocto RootFS

Jump to solution
12,690 Views
contra
Contributor III

Hi, I have used Yocto to create the fsl-image-gui, I'd like to add in a custom script to the RootFS.

I did try adding it into "tmp/work/imx28evk-poky-linux-gnueabi/fsl-image-gui/1.0-r0/rootfs/etc/X11/Xsession.d/" when I rebuild the image using the command "bitbake fsl-image-gui" and copy to SD card the new script doesn't appear.

Can anyone help me please?

1 Solution
3,892 Views
LeonardoSandova
Specialist I

All custom scripts should be installed from  the recipe (.bb file or even better if you create a .bbappend file, into the do_install task). What is the recipe related to this script?. The rootfs to look is the one deploy on tmp/deploy/images/*.tar.bz2. All others rootfs under tmp are used during the build.

Leo

View solution in original post

0 Kudos
4 Replies
1,803 Views
aiweixin
Contributor IV
 
 

Have you solved this problem? I have the same problem。Can you share it?

0 Kudos
3,893 Views
LeonardoSandova
Specialist I

All custom scripts should be installed from  the recipe (.bb file or even better if you create a .bbappend file, into the do_install task). What is the recipe related to this script?. The rootfs to look is the one deploy on tmp/deploy/images/*.tar.bz2. All others rootfs under tmp are used during the build.

Leo

0 Kudos
3,892 Views
daiane_angolini
NXP Employee
NXP Employee

If it´s something like xorg.conf, take a look here

https://github.com/Freescale/meta-fsl-arm/tree/master/recipes-graphics/xorg-xserver

if it´s something like rclocal, take a look here:

https://github.com/Freescale/meta-fsl-demos/tree/master/recipes-fsl/fsl-rc-local

Well, it may not be exactly what you want, but I think it may help :smileywink:

3,892 Views
contra
Contributor III

Thank you, this helped.