Change Yocto RootFS

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 
已解决

Change Yocto RootFS

跳至解决方案
12,698 次查看
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 解答
3,900 次查看
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 项奖励
4 回复数
1,811 次查看
aiweixin
Contributor IV
 
 

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

0 项奖励
3,901 次查看
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 项奖励
3,900 次查看
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,900 次查看
contra
Contributor III

Thank you, this helped.