|
Yocto version thud busybox build failed: rpc/rpc.h - No such file
How about adding in your busybox bbappend file the following line. DEPENDS += "libtirpc" Best Regards, Chen Qi
How about adding in your busybox bbappend file the following line. DEPENDS += "libtirpc" Best Regards, Chen Qi
|
By
Chen Qi
· #43400
·
|
|
Yocto Thud - /lib64 link - Build Failure
This is because prelink_image is also in IMAGE_PREPROCESS_COMMAND. meta/classes/image-prelink.bbclass:IMAGE_PREPROCESS_COMMAND_append_libc-glibc = " prelink_setup; prelink_image; " And as it's using _
This is because prelink_image is also in IMAGE_PREPROCESS_COMMAND. meta/classes/image-prelink.bbclass:IMAGE_PREPROCESS_COMMAND_append_libc-glibc = " prelink_setup; prelink_image; " And as it's using _
|
By
Chen Qi
· #43398
·
|
|
x86_64 kernel with i586 userland plus SDK?
The above issue has been filed a bug in bugzilla. https://bugzilla.yoctoproject.org/show_bug.cgi?id=13047 I've also added my comments there. Best Regards, Chen Qi
The above issue has been filed a bug in bugzilla. https://bugzilla.yoctoproject.org/show_bug.cgi?id=13047 I've also added my comments there. Best Regards, Chen Qi
|
By
Chen Qi
· #43370
·
|
|
Enable wpa_supplicant@... on boot with systemd
For the current codes, manually creating symlink is the easiest way to achieve your goal. The current mechanism in systemd.bbclass has to 'enable' or 'disable' all services in SYSTEMD_SERVICE_xxx. The
For the current codes, manually creating symlink is the easiest way to achieve your goal. The current mechanism in systemd.bbclass has to 'enable' or 'disable' all services in SYSTEMD_SERVICE_xxx. The
|
By
Chen Qi
· #43217
·
|
|
lib32-ncurses not installing in rootfs
Check the packages-split/ directory to see how files are put in each package. I guess these files are packages into other packages derived from the ncurses recipe. Best Regards, Chen Qi
Check the packages-split/ directory to see how files are put in each package. I guess these files are packages into other packages derived from the ncurses recipe. Best Regards, Chen Qi
|
By
Chen Qi
· #43110
·
|
|
[patchtest-oe][PATCH] test_patch_cve.py: fix cve tag checking logic
The current logic for checking cve tag is not correct. It errors out if and only if the patch contains a line which begins with CVE-YYYY-XXXX and contains nothing else. It will not error out if the pa
The current logic for checking cve tag is not correct. It errors out if and only if the patch contains a line which begins with CVE-YYYY-XXXX and contains nothing else. It will not error out if the pa
|
By
Chen Qi
· #43032
·
|
|
include own script
I guess the problem is about LIC_FILES_CHKSUM. Your LICENSE is set to 'Zoli'. So where do you put your Zoli license and what's the checksum of it? How about using the following two lines if you do not
I guess the problem is about LIC_FILES_CHKSUM. Your LICENSE is set to 'Zoli'. So where do you put your Zoli license and what's the checksum of it? How about using the following two lines if you do not
|
By
Chen Qi
· #42984
·
|
|
Working on Dependent Recipes in eSDK
Hi Aaron, The main pain for now is that `devtool sdk-install <DEPEND_RECIPE>' does not work as expected, right? I just checked the codes of sdk-install, and found that it does not fit the current RSS
Hi Aaron, The main pain for now is that `devtool sdk-install <DEPEND_RECIPE>' does not work as expected, right? I just checked the codes of sdk-install, and found that it does not fit the current RSS
|
By
Chen Qi
· #42865
·
|
|
eSDK installation failing with sig computed mismatch with sig locked
I think the main problem is do_fetch sig mismatch. What does the SRC_URI for the recipe look like? Best Regards, Chen Qi
I think the main problem is do_fetch sig mismatch. What does the SRC_URI for the recipe look like? Best Regards, Chen Qi
|
By
Chen Qi
· #42864
·
|
|
conflicting requests error while building SDK
This is the current RDEPENDS setting in kernel-devsrc.bb recipe: RDEPENDS_${PN} = "bc python flex bison ${TCLIBC}-utils" # 4.15+ needs these next two RDEPENDS RDEPENDS_${PN} += "openssl-dev util-linux
This is the current RDEPENDS setting in kernel-devsrc.bb recipe: RDEPENDS_${PN} = "bc python flex bison ${TCLIBC}-utils" # 4.15+ needs these next two RDEPENDS RDEPENDS_${PN} += "openssl-dev util-linux
|
By
Chen Qi
· #42832
·
|
|
[meta-selinux][PATCH] libpcre_selinux.inc: fix do_install failure if .so file does not exist
In case of the existence of meta-mingw, the library is .dll instead of .so and these .dll files are in ${bindir}. We need to check the existence of the .so file before doing readlink, otherwise do_ins
In case of the existence of meta-mingw, the library is .dll instead of .so and these .dll files are in ${bindir}. We need to check the existence of the .so file before doing readlink, otherwise do_ins
|
By
Chen Qi
· #42607
·
|
|
why must add the "mesa" dependent on bbfiles which already has a "libmali.so" for mali gpu based system?
Which recipe and what configuration?
Which recipe and what configuration?
|
By
Chen Qi
· #42537
·
|
|
Building, Using SDK
I'd suggest you not using precompiled SDK unless you are justing doing some simple cross compilation that requires no additional libs, header files, etc. The populate_sdk task directly installs rpm pa
I'd suggest you not using precompiled SDK unless you are justing doing some simple cross compilation that requires no additional libs, header files, etc. The populate_sdk task directly installs rpm pa
|
By
Chen Qi
· #42504
·
|
|
Systemd based image freezing issue
I just checked out v230 and took a look of the codes. I think it's the codes below that raise the 'No medium found' error. src/basic/cgoup-util.c int cg_unified(void) { struct statfs fs; /* Checks if
I just checked out v230 and took a look of the codes. I think it's the codes below that raise the 'No medium found' error. src/basic/cgoup-util.c int cg_unified(void) { struct statfs fs; /* Checks if
|
By
Chen Qi
· #42382
·
|
|
modify SDK / populate_sdk
How about using SDK_POSTPROCESS_COMMAND? Best Regards, Chen Qi
How about using SDK_POSTPROCESS_COMMAND? Best Regards, Chen Qi
|
By
Chen Qi
· #42326
·
|
|
Sequential generation of eSDK from with the same workspace fails for similar machines
The problem is about two machines having the same TUNE_PKGARCH, and could be solved by setting TOOLCHAIN_OUTPUTNAME in your distro conf file to include MACHINE information. But I'm not sure if this is
The problem is about two machines having the same TUNE_PKGARCH, and could be solved by setting TOOLCHAIN_OUTPUTNAME in your distro conf file to include MACHINE information. But I'm not sure if this is
|
By
Chen Qi
· #42309
·
|
|
Unable to add a dev package to the Extended SDK
I think using IMAGE_INSTALL_append = " curl", and then `bitbake core-image-minimal -c populate_sdk_ext" is sufficient. After this, you can develop against curl libs/headers inside the sdk. Best Regard
I think using IMAGE_INSTALL_append = " curl", and then `bitbake core-image-minimal -c populate_sdk_ext" is sufficient. After this, you can develop against curl libs/headers inside the sdk. Best Regard
|
By
Chen Qi
· #42261
·
|
|
Cleaning out build without re-downloading sources
The tmp/ directory. Best Regards, Chen Qi
The tmp/ directory. Best Regards, Chen Qi
|
By
Chen Qi
· #42251
·
|
|
Id "s0" respawning too fast on Raspberry pi3
The SERIAL_CONSOLES setting is _expected_ affect all recipes. That's why it's usually set in some .conf file. Serial consoles will have different names and are device related. That's why we have the v
The SERIAL_CONSOLES setting is _expected_ affect all recipes. That's why it's usually set in some .conf file. Serial consoles will have different names and are device related. That's why we have the v
|
By
Chen Qi
· #42230
·
|
|
Cleaning out build without re-downloading sources
There is a separate directory, which is usually downloads/ under the build directory, to keep downloaded git repos and tarballs. [network] ---> [downloads] ---> [tmp/work/xxxx] So you don't have to wo
There is a separate directory, which is usually downloads/ under the build directory, to keep downloaded git repos and tarballs. [network] ---> [downloads] ---> [tmp/work/xxxx] So you don't have to wo
|
By
Chen Qi
· #42227
·
|