[OE-core] [meta/master][PATCH] kernel.bbclass: Use KERNEL_IMAGEDEST instead of hardcoded boot path

2022-04-01 Thread Alessio Igor Bogani
The behaviour doesn't change because KERNEL_IMAGEDEST is defined as 'boot' in the same file (line 215). Signed-off-by: Alessio Igor Bogani --- meta/classes/kernel.bbclass | 15 +++ 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/meta/classes/kernel.bbclass b/meta

[OE-core] [PATCH v2] systemtap: support usrmerge

2019-10-25 Thread Alessio Igor Bogani
Signed-off-by: Alessio Igor Bogani --- meta/recipes-kernel/systemtap/systemtap_git.bb | 11 +++ 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/meta/recipes-kernel/systemtap/systemtap_git.bb b/meta/recipes-kernel/systemtap/systemtap_git.bb index 6ee3e1c0f7..1c9f2aed16

[OE-core] [PATCH] systemtap: support usrmerge

2019-10-23 Thread Alessio Igor Bogani
Signed-off-by: Alessio Igor Bogani --- meta/recipes-kernel/systemtap/systemtap_git.bb | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/meta/recipes-kernel/systemtap/systemtap_git.bb b/meta/recipes-kernel/systemtap/systemtap_git.bb index 6ee3e1c0f7..2efba2e06f 100644

[OE-core] [PATCH] rootfs-postcommands: Replace an hard-coded value

2019-10-02 Thread Alessio Igor Bogani
Replace an hard-coded value ".rootfs" with the appropriate bitbake variable IMAGE_NAME_SUFFIX. Signed-off-by: Alessio Igor Bogani --- meta/classes/rootfs-postcommands.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/rootfs-postcommands.bbcla

[OE-core] [PATCH] Avoid use of an hard-coded value

2019-10-02 Thread Alessio Igor Bogani
Signed-off-by: Alessio Igor Bogani --- meta/classes/rootfs-postcommands.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/rootfs-postcommands.bbclass b/meta/classes/rootfs-postcommands.bbclass index 88f75d0f44..2f171836fa 100644 --- a/meta/classes/rootfs

[OE-core] [PATCH v2] wic: Using the right rootfs size during prepare_rootfs

2019-09-26 Thread Alessio Igor Bogani
.wks file should always be computed on the fly, else every partition will be constrained to be the same size as what ever value was in ROOTFS_SIZE. Signed-off-by: Alessio Igor Bogani Signed-off-by: Jason Wessel --- scripts/lib/wic/partition.py | 23 +-- 1 file changed, 17

[OE-core] [PATCH] wic: Using the right rootfs size during prepare_rootfs

2019-09-25 Thread Alessio Igor Bogani
The commit 8e48b4d6c4 makes wic ignores IMAGE_ROOTFS_SIZE for rootfs size and makes it uses the computed one only. Re-add support for IMAGE_ROOTFS_SIZE variable and compute roots size only if the former is not defined. Signed-off-by: Alessio Igor Bogani --- scripts/lib/wic/partition.py | 22

[OE-core] Generate an SDK with both 32 and 64 bit versions of the glibc

2019-04-21 Thread Alessio Igor Bogani
Hi all, I'm trying to install a third parted developed tool (closed source) into my x86_64 SDK. Unfortunately it is composed by a mix of 32 and 64 bit binaries thus `bitbake myimage -c populate_sdk` fails with: Error: Problem: conflicting requests - nothing provides libpthread.so.0 needed by

[OE-core] [PATCH] wic: Create a logical partition only when it is really mandatory

2016-12-07 Thread Alessio Igor Bogani
Don't worth bother with logical partition on MBR partition type (aka msdos) if disk image generated by wic should have 4 partitions. Signed-off-by: Alessio Igor Bogani <alessio.bog...@elettra.eu> --- scripts/lib/wic/utils/partitionedfs.py | 7 --- 1 file changed, 4 insertions(+), 3 del