[OE-core] [PATCH] create-spdx: Fix supplier field

2022-07-27 Thread Mihai Lindner
The correct field name is "supplier" according to SPDX schema. The "supplier" field translates to "PackageSupplier", but that's for tag-value format. Signed-off-by: Mihai Lindner --- meta/classes/create-spdx.bbclass | 6 +++--- meta/lib/oe/spdx.py

[OE-core] [PATCH] wic/plugins/rootfs: Fix NameError for 'orig_path'

2022-07-19 Thread Mihai Lindner
Fix "NameError: name 'orig_path' is not defined". It's a typo from when this error was handled outside this function. Signed-off-by: Mihai Lindner --- scripts/lib/wic/plugins/source/rootfs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/lib/wic/plug

Re: [OE-core] [PATCH] sysvinit rc: Use PSPLASH_FIFO_DIR for progress fifo

2020-09-26 Thread mihai . lindner
Please backport this to dunfell. Thanks, Mihai On Sat, Aug 29, 2020 at 06:09 AM, Michael Gloff wrote: > > psplash expects the fifo to be in /run or specified > by PSPLASH_FIFO_DIR. This patch allows psplash to > quit normally. Also, fix the work around of using > echo directly into the fifo and

Re: [OE-core] [PATCH 0/2] EFI Installer Fixes

2013-09-24 Thread Mihai Lindner
-efi.sh|7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) Both fixed; tested here also. Thanks, -- Mihai Lindner Yocto Project QA Intel OTC ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org http

[OE-core] [PATCH 0/3] oeqa: cleaner testimage log

2013-09-05 Thread Mihai Lindner
/cgit.cgi/poky-contrib/log/?h=mihai/tests Mihai Lindner (3): oeqa/oetest: oeRuntimeTest: enable long messages oeqa/utils/sshcontrol: tweak ssh options oeqa/runtime/scp: replace dd call meta/lib/oeqa/oetest.py | 2 ++ meta/lib/oeqa/runtime/scp.py | 19 +-- meta

[OE-core] [PATCH 2/3] oeqa/utils/sshcontrol: tweak ssh options

2013-09-05 Thread Mihai Lindner
Add ssh_options to be used, the same, by ssh and scp: Decrease LogLevel to ERROR, to suppress warnings (e.g. ssh host verifications, two warnings in case of having openssh with hpn patches); We no longer presume that the first line is a warning. Signed-off-by: Mihai Lindner mihaix.lind

[OE-core] [PATCH 3/3] oeqa/runtime/scp: replace dd call

2013-09-05 Thread Mihai Lindner
Use a file object to generate a our test file instead of calling `dd`; removes dd's output from testimage.log, keeps unittest output clean. Also remove unused imports. Signed-off-by: Mihai Lindner mihaix.lind...@linux.intel.com --- meta/lib/oeqa/runtime/scp.py | 19 +-- 1 file

[OE-core] [PATCH 1/3] oeqa/oetest: oeRuntimeTest: enable long messages

2013-09-05 Thread Mihai Lindner
Set longMessage to True for all tests derived from oeRuntimeTest, in order to have somewhat info on assertions with cryptic or no messages. Signed-off-by: Mihai Lindner mihaix.lind...@linux.intel.com --- meta/lib/oeqa/oetest.py| 2 ++ meta/lib/oeqa/runtime/smart.py | 2 -- 2 files

[OE-core] RFC: oe-selftest script to run automated tests against bitbake tools

2013-07-08 Thread Mihai Lindner
Hello all, The idea of oe-selftest would be to have an extra method of testing to cover what's not addressed by sanity tests, bitbake-selftest or image run-time testing. More information and some example tests are posted in the related bug, here:

[OE-core] [PATCH 0/2] check lsb_release exists and avoid sstate subdirectory

2012-10-26 Thread Mihai Lindner
Make sure `lsb_release` exists; Documentation updated to reflect the above; Replace / to avoid subdirectories in ./sstate-cache/ Signed-off-by: Mihai Lindner mihaix.lind...@linux.intel.com --- The following changes since commit 3f14eb3674d44b61fe19016902d41cae57be8e6c: poky.conf: Add multiarch

[OE-core] [PATCH 2/2] distro_identifier: replace slash with hyphen

2012-10-26 Thread Mihai Lindner
Use - instead of / in n/a strings (Distributor ID and/or Release), provided by `lsb_release`. This leads to directories and subdirectories created in ./sstate-cache/ e.g. Distro-n/a/ where Distro-n is dir and a is subdir. Signed-off-by: Mihai Lindner mihaix.lind...@linux.intel.com --- meta/lib

[OE-core] [PATCH 1/2] lsb_release: add sanity to avoid Unknown

2012-10-26 Thread Mihai Lindner
Check for lsb_release command (package name should be lsb-release for most package managers) to avoid Unknown Linux distributions, untested distro warnings and Unknown dir in ./sstate-cache/ Also add lsb-release in host's software needs, Fedora and CentOS for now. Signed-off-by: Mihai Lindner

Re: [OE-core] [PATCH 1/2] lsb_release: add sanity to avoid Unknown

2012-10-26 Thread Mihai Lindner
On 10/26/2012 05:44 PM, Paul Eggleton wrote: On Friday 26 October 2012 17:37:17 Mihai Lindner wrote: Check for lsb_release command (package name should be lsb-release for most package managers) to avoid Unknown Linux distributions, untested distro warnings and Unknown dir in ./sstate-cache

Re: [OE-core] [PATCH 1/2] lsb_release: add sanity to avoid Unknown

2012-10-26 Thread Mihai Lindner
On 10/26/2012 05:44 PM, Paul Eggleton wrote: On Friday 26 October 2012 17:37:17 Mihai Lindner wrote: Check for lsb_release command (package name should be lsb-release for most package managers) to avoid Unknown Linux distributions, untested distro warnings and Unknown dir in ./sstate-cache

[OE-core] [PATCH 1/1] grub-efi: fix Nothing PROVIDES 'grub-efi-x86_64-native'

2012-08-24 Thread Mihai Lindner
ERROR: Nothing PROVIDES 'grub-efi-x86_64-native' is returned when trying to build meta-intel/meta-cedartrail with DEFAULTTUNE = core2-64 Used TRANSLATED_TARGET_ARCH instead of TARGET_ARCH in grub-efi.bbclass [YOCTO #3013] Signed-off-by: Mihai Lindner mihaix.lind...@linux.intel.com --- meta

[OE-core] [PATCH 0/1] grub-efi: fix Nothing PROVIDES 'grub-efi-x86_64-native'

2012-08-24 Thread Mihai Lindner
ERROR: Nothing PROVIDES 'grub-efi-x86_64-native' is returned when trying to build meta-intel/meta-cedartrail with DEFAULTTUNE = core2-64 Used TRANSLATED_TARGET_ARCH instead of TARGET_ARCH in grub-efi.bbclass [YOCTO #3013] Signed-off-by: Mihai Lindner mihaix.lind...@linux.intel.com --- Mihai

[OE-core] [PATCH 0/1] sysklogd: removed tabs from syslog.conf

2012-08-10 Thread Mihai Lindner
Yocto #2926: syslog.conf should not have tabs within the selector field. Removed tabs from the selector field of syslog rules. Tabs or spaces should be used, in syslog.conf, only when separating selectors from actions. Signed-off-by: Mihai Lindner mihaix.lind...@linux.intel.com --- The following

Re: [OE-core] gcc errors while building core-image-sato-sdk

2012-07-04 Thread Mihai Lindner
for cross-compilation' /home/ddalex/ssd/yocto/build/tmp/work/i586-poky-linux/gcc-4.7.1+svnr188658-r2/gcc-4_7-branch/build.i586-poky-linux.i586-poky-linux/gcc/config.log `bitbake` will fail if `grep` has results. -- Mihai Lindner Yocto Project

[OE-core] [1/1] sudo: fixed wrong `chmod` path

2012-05-24 Thread Mihai Lindner
Placed $D between braces ${D} to be correctly expanded to the workdir path, instead of a path relative to host rootfs. Currently, bitbake sudo fails on host systems where sudo is not installed. Signed-off-by: Mihai Lindner mihaix.lind...@linux.intel.com --- meta/recipes-extended/sudo

[OE-core] [PATCH] xf86-video-intel: recipe upgrade from 2.18 to 2.19

2012-05-23 Thread Mihai Lindner
Signed-off-by: mihai lindner mihaix.lind...@linux.intel.com --- .../{xf86-video-intel_2.18.0.bb = xf86-video-intel_2.19.0.bb} |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename meta/recipes-graphics/xorg-driver/{xf86-video-intel_2.18.0.bb = xf86-video-intel_2.19.0.bb} (82

[OE-core] [PATCH 1/1] sudo: fixed wrong `chmod` path

2012-05-23 Thread Mihai Lindner
Placed $D between braces ${D} to be correctly expanded to the workdir path, instead of a path relative to host rootfs. Currently, bitbake sudo fails on host systems where sudo is not installed. Signed-off-by: Mihai Lindner mihaix.lind...@linux.intel.com --- meta/recipes-extended/sudo