Re: [yocto] How to use different busybox defconfig's in the initramfs and rootfs image

2015-02-04 Thread Paul Eggleton
On Wednesday 04 February 2015 10:47:37 ChenQi wrote: > On 02/03/2015 05:23 PM, erwin.rieger@rohde-schwarz.com wrote: > > I have a working solution now, but it is not as clean as i would like > > it to be and some new questions arose with it. > > > > My current setup consists of a busybox.bbapp

Re: [yocto] How to use different busybox defconfig's in the initramfs and rootfs image

2015-02-04 Thread Paul Eggleton
On Wednesday 04 February 2015 10:47:37 ChenQi wrote: > On 02/03/2015 05:23 PM, erwin.rieger@rohde-schwarz.com wrote: > > I have a working solution now, but it is not as clean as i would like > > it to be and some new questions arose with it. > > > > My current setup consists of a busybox.bbapp

Re: [yocto] How to use different busybox defconfig's in the initramfs and rootfs image

2015-02-03 Thread ChenQi
{ install ${WORKDIR}/inetd.conf ${D}${sysconfdir} } BUSYBOX_SPLIT_SUID = "0" --------------------------- Best Regards, Erwin Rieger -ChenQi schrieb: - An: , Von: ChenQi Datum: 03.02.2015 02:48 Betreff: Re:

Re: [yocto] How to use different busybox defconfig's in the initramfs and rootfs image

2015-02-03 Thread Erwin . Rieger . ext
:" SRC_URI += " \     file://inetd.conf \     " do_install_append() {     install ${WORKDIR}/inetd.conf ${D}${sysconfdir} } BUSYBOX_SPLIT_SUID = "0" ----------------------------------- Best Regards, Erwin Rieger -ChenQi schrieb: - An: , Von: ChenQi Datum: 03.02.2015 02:48 B

Re: [yocto] How to use different busybox defconfig's in the initramfs and rootfs image

2015-02-02 Thread ChenQi
The only way I know is to make a new recipe, busybox-initramfs.bb, for example. Install busybox for image rootfs and busybox-initramfs for initramfs. Best Regards, Chen Qi On 02/02/2015 09:21 PM, erwin.rieger@rohde-schwarz.com wrote: Hello list, i have used Yocto to create a initramfs lin

[yocto] How to use different busybox defconfig's in the initramfs and rootfs image

2015-02-02 Thread Erwin . Rieger . ext
Hello list, i have used Yocto to create a initramfs linux kernel and a corresponding rootfs for a embedded linux system. Things are working as expected, so far. Now i want to fine-tune my setup and want to use a different busybox configuration in the initramfs as the one in the rootfs image. F