|
update-rc.d initscript shows up as S00... rather than S09...
Hi Darcy, Thank you for your feedback. I think this is a bug which needs to be fixed. I've filed a bug in bugzilla with information in your emails. https://bugzilla.yoctoproject.org/show_bug.cgi?id=63
Hi Darcy, Thank you for your feedback. I think this is a bug which needs to be fixed. I've filed a bug in bugzilla with information in your emails. https://bugzilla.yoctoproject.org/show_bug.cgi?id=63
|
By
Chen Qi
· #19826
·
|
|
Can't boot poky-tiny in qemu
I guess the problem is kernel related. Maybe the kernel configuration for linux-yocto-tiny lacks something. Please open a bug in bugzilla, if convenient. https://bugzilla.yoctoproject.org Best Regards
I guess the problem is kernel related. Maybe the kernel configuration for linux-yocto-tiny lacks something. Please open a bug in bugzilla, if convenient. https://bugzilla.yoctoproject.org Best Regards
|
By
Chen Qi
· #19711
·
|
|
PACKAGECONFIG and related parameters
I don't think that's achievable with PACKAGECONFIG alone. I would suggest you write a do_configure_prepend and adjust the configure options there. For example, if you get '--with-flavors=x11-gl --with
I don't think that's achievable with PACKAGECONFIG alone. I would suggest you write a do_configure_prepend and adjust the configure options there. For example, if you get '--with-flavors=x11-gl --with
|
By
Chen Qi
· #19271
·
|
|
/var/log/dmesg: should it not be created?
I think it was left out by mistake. It should be added to runlevel S. Could you please make a patch to fix it? And please send the patch to the oe-core mailing list (openembedded-core@...
I think it was left out by mistake. It should be added to runlevel S. Could you please make a patch to fix it? And please send the patch to the oe-core mailing list (openembedded-core@...
|
By
Chen Qi
· #17169
·
|
|
How to include python-misc in SDK?
Try adding the following line in your local.conf. TOOLCHAIN_HOST_TASK_append = " nativesdk-python-misc" Cheers, Chen Qi
Try adding the following line in your local.conf. TOOLCHAIN_HOST_TASK_append = " nativesdk-python-misc" Cheers, Chen Qi
|
By
Chen Qi
· #15912
·
|
|
header file missing in populated SDK
Please don't do that. I think just installing the foo.h into the ${D}${includedir} would do. And foo.h will end up in the FOO-dev package. Make sure that the FOO package is in the IMAGE_INSTALL list,
Please don't do that. I think just installing the foo.h into the ${D}${includedir} would do. And foo.h will end up in the FOO-dev package. Make sure that the FOO package is in the IMAGE_INSTALL list,
|
By
Chen Qi
· #15801
·
|
|
Detecting build type within recipe (target, native or nativesdk)
1. Use suffixes such as _class-native, _class-target, etc. I think this is the preferred way. Please grep the repo for more info. 2. Use ${PN} value. e.g. (from dpkg.inc) do_install_append () { if [ "
1. Use suffixes such as _class-native, _class-target, etc. I think this is the preferred way. Please grep the repo for more info. 2. Use ${PN} value. e.g. (from dpkg.inc) do_install_append () { if [ "
|
By
Chen Qi
· #15178
·
|
|
Creating a volatile image
Three ways to achieve this goal. 1. If you're using yocto 3.8 kernel, you can enable aufs by add the following line to local.conf. KERNEL_FEATURES_append = " features/aufs/aufs-enable.scc" This will e
Three ways to achieve this goal. 1. If you're using yocto 3.8 kernel, you can enable aufs by add the following line to local.conf. KERNEL_FEATURES_append = " features/aufs/aufs-enable.scc" This will e
|
By
Chen Qi
· #14806
·
|
|
Bitbake requires Python 2.7.3
I run into the same problem on Ubuntu 11.10, and I installed python2.7.5. Everything's been working out well so far. //Chen Qi
I run into the same problem on Ubuntu 11.10, and I installed python2.7.5. Everything's been working out well so far. //Chen Qi
|
By
Chen Qi
· #14727
·
|
|
Modify udev
I've just filed a bug for the udev-cache. https://bugzilla.yoctoproject.org/show_bug.cgi?id=4738 The patch is still under review. If you want to use it now, please visit the following link and take th
I've just filed a bug for the udev-cache. https://bugzilla.yoctoproject.org/show_bug.cgi?id=4738 The patch is still under review. If you want to use it now, please visit the following link and take th
|
By
Chen Qi
· #14416
·
|
|
Modify udev
To add udev-cache to your image, add the following line to your local.conf. IMAGE_INSTALL_append += "udev-cache"
To add udev-cache to your image, add the following line to your local.conf. IMAGE_INSTALL_append += "udev-cache"
|
By
Chen Qi
· #14410
·
|
|
Modify udev
If the performance is important, what about using udev-cache to speed up the boot process? Cheers, Chen Qi
If the performance is important, what about using udev-cache to speed up the boot process? Cheers, Chen Qi
|
By
Chen Qi
· #14407
·
|
|
Samba server?
http://docs.openembedded.org/bitbake/html/ http://www.yoctoproject.org/docs/current/dev-manual/dev-manual.html The above two manuals might be sufficient for understanding the recipes and performing co
http://docs.openembedded.org/bitbake/html/ http://www.yoctoproject.org/docs/current/dev-manual/dev-manual.html The above two manuals might be sufficient for understanding the recipes and performing co
|
By
Chen Qi
· #12814
·
|
|
Samba server?
http://www.yoctoproject.org/docs/current/dev-manual/dev-manual.html section 5.2 Customizing Images In your case, you could add the following line to local.conf. IMAGE_INSTALL_append += "samba" And you
http://www.yoctoproject.org/docs/current/dev-manual/dev-manual.html section 5.2 Customizing Images In your case, you could add the following line to local.conf. IMAGE_INSTALL_append += "samba" And you
|
By
Chen Qi
· #12812
·
|
|
bitbaking error with hello world recipe
try renaming it to hello_1.0.bb
try renaming it to hello_1.0.bb
|
By
Chen Qi
· #12669
·
|
|
[meta-ivi][PATCH 01/23] base-passwd: Modify patch as home directory of root user is /root
Home directory is now configurable now. You could specify it in local.conf. See the following commits for more details. 845c2c0 oprofile: use dynamic root home directory 2af073a base-passwd: use confi
Home directory is now configurable now. You could specify it in local.conf. See the following commits for more details. 845c2c0 oprofile: use dynamic root home directory 2af073a base-passwd: use confi
|
By
Chen Qi
· #11401
·
|
|
Set hostname on image?
The hostname.sh script in recipes-core/initscripts will be later modified to regard the kernel command line parameters. You can then specify your hostname in kernel command line when booting. Best Reg
The hostname.sh script in recipes-core/initscripts will be later modified to regard the kernel command line parameters. You can then specify your hostname in kernel command line when booting. Best Reg
|
By
Chen Qi
· #11229
·
|