|
DISTRO_FEATURES in custom recipe does not override local.conf setting
On Thu, Dec 29, 2022 at 01:32 AM, Mistyron wrote: On 12/28/22 13:24, Mistyron via lists.yoctoproject.org wrote: On 2022-12-28 7:55 a.m., Alexander Kanavin wrote: You can't. '_remove' has priority over
On Thu, Dec 29, 2022 at 01:32 AM, Mistyron wrote: On 12/28/22 13:24, Mistyron via lists.yoctoproject.org wrote: On 2022-12-28 7:55 a.m., Alexander Kanavin wrote: You can't. '_remove' has priority over
|
By
tomzy
· #58895
·
|
|
how to setup host environment for yocto
Hi I recommend taking a look at the kas project.[1] It allows you to manage Yocto layers in your project in a very easy and pleasant way. You can also take a look at the Yocto Summit presentation [2]
Hi I recommend taking a look at the kas project.[1] It allows you to manage Yocto layers in your project in a very easy and pleasant way. You can also take a look at the Yocto Summit presentation [2]
|
By
tomzy
· #57389
·
|
|
Yocto Kernel building
From the log I can tell that there is some problem with paths, like bitbake could not find needed files. Yes, maybe it would be better to try linux-qoriq_4.19.bb and then set PREFERRED_VERSION. Unfort
From the log I can tell that there is some problem with paths, like bitbake could not find needed files. Yes, maybe it would be better to try linux-qoriq_4.19.bb and then set PREFERRED_VERSION. Unfort
|
By
tomzy
· #56775
·
|
|
Yocto Kernel building
It is better to use [include file](https://github.com/Freescale/meta-freescale/blob/dunfell/recipes-kernel/linux/linux-qoriq.inc) in similar way the [linux-qoriq_5.4.bb](https://github.com/Freescale/m
It is better to use [include file](https://github.com/Freescale/meta-freescale/blob/dunfell/recipes-kernel/linux/linux-qoriq.inc) in similar way the [linux-qoriq_5.4.bb](https://github.com/Freescale/m
|
By
tomzy
· #56763
·
|
|
Yocto kernel building
Hi When you want to use another version of the kernel it is better to create new recipe (.bb file). You could use existing linux-qoriq_5.10 [1] recipe as example, just change the SRC_URI, SRCREV and L
Hi When you want to use another version of the kernel it is better to create new recipe (.bb file). You could use existing linux-qoriq_5.10 [1] recipe as example, just change the SRC_URI, SRCREV and L
|
By
tomzy
· #56761
·
|
|
How to disable Bluetooth of Raspberry Pi from Yocto?
Hello All, Hi I have a question regarding disabling bluetooth of my Raspberry Pi Compute Module 4. I know that we need to set "dtoverlay=disable-bt" in config.txt But how to do it from Yocto? Should I
Hello All, Hi I have a question regarding disabling bluetooth of my Raspberry Pi Compute Module 4. I know that we need to set "dtoverlay=disable-bt" in config.txt But how to do it from Yocto? Should I
|
By
tomzy
· #56399
·
|
|
On managing debug and production builds
No problem What are the difference there? You want to use different config on prod and debug images? Maybe add it as config fragments? Then you would need to add some global variable to distinguish wh
No problem What are the difference there? You want to use different config on prod and debug images? Maybe add it as config fragments? Then you would need to add some global variable to distinguish wh
|
By
tomzy
· #56335
·
|
|
On managing debug and production builds
Hi Vinayak I believe that the best way to prepare debug and prod images is to create include file (.inc) with base set of packages and features and then add two .bb recipes, one for prod and one for d
Hi Vinayak I believe that the best way to prepare debug and prod images is to create include file (.inc) with base set of packages and features and then add two .bb recipes, one for prod and one for d
|
By
tomzy
· #56332
·
|
|
Enabling variable history for bbappends
#devtool
#yocto
Hi, what do you mean by variable history? You can run `bitbake -e recipe_name | grep variable_name` which should show you how the variable value was changed by next recipes/bbappend files etc. Tomasz
Hi, what do you mean by variable history? You can run `bitbake -e recipe_name | grep variable_name` which should show you how the variable value was changed by next recipes/bbappend files etc. Tomasz
|
By
tomzy
· #56238
·
|
|
Upgrading Yocto without rebuilding instances
#yocto
Hello IIRC you can prepare configuration for Zeus and run build, lots of things probable will need to be rebuild as there will be in different versions but if only U-Boot is a problem then maybe you c
Hello IIRC you can prepare configuration for Zeus and run build, lots of things probable will need to be rebuild as there will be in different versions but if only U-Boot is a problem then maybe you c
|
By
tomzy
· #56146
·
|
|
readonly rootfs - storing data in separate partition
Hi Not long ago we use it in couple of projects. Main repo can be found here, https://github.com/cmhe/meta-readonly-rootfs-overlay You can also find our fork with couple of changes (on of them is for
Hi Not long ago we use it in couple of projects. Main repo can be found here, https://github.com/cmhe/meta-readonly-rootfs-overlay You can also find our fork with couple of changes (on of them is for
|
By
tomzy
· #56091
·
|
|
Honister broken WiFi communication
Hi JH, Are you using custom Linux kernel / custom device tree? Maybe there is some issue there? Kind regards, Tomasz Żyjewski Embedded Systems Engineer GPG: 5C495EA3EBEECA59 https://3mdeb.com | @3mdeb
Hi JH, Are you using custom Linux kernel / custom device tree? Maybe there is some issue there? Kind regards, Tomasz Żyjewski Embedded Systems Engineer GPG: 5C495EA3EBEECA59 https://3mdeb.com | @3mdeb
|
By
tomzy
· #55907
·
|
|
Behaviour of .bbappend when default script is not present
Hi, You could also consider using the `BBFILES_DYNAMIC`[1] variable, this way your bbappend would only apply when there is `meta-raspberrypi` in the build configuration. Your bbappend could be placed
Hi, You could also consider using the `BBFILES_DYNAMIC`[1] variable, this way your bbappend would only apply when there is `meta-raspberrypi` in the build configuration. Your bbappend could be placed
|
By
tomzy
· #55515
·
|
|
How to log inside a recipe
#yocto
This is not something I do a lot but from what I know, you should be able to use `bbnote` expresions etc inside the functions like `do_install` or `do_compile` only if you inherit the `logging` bbclas
This is not something I do a lot but from what I know, you should be able to use `bbnote` expresions etc inside the functions like `do_install` or `do_compile` only if you inherit the `logging` bbclas
|
By
tomzy
· #55497
·
|
|
How to log inside a recipe
#yocto
Hi To get a value of some variable added in recipe it is best to use bitbake with `-e` flag which should print the whole environment, then one can just use `grep` to search for given variable. Let say
Hi To get a value of some variable added in recipe it is best to use bitbake with `-e` flag which should print the whole environment, then one can just use `grep` to search for given variable. Let say
|
By
tomzy
· #55494
·
|
|
#swupdate integration error.
#swupdate
Hi Vishal, It looks like there is some problem with `u-boot-fw-utils` compilation. Are you using U-Boot in your system? Which target do you try to build? As you can see [here](https://github.com/sbabi
Hi Vishal, It looks like there is some problem with `u-boot-fw-utils` compilation. Are you using U-Boot in your system? Which target do you try to build? As you can see [here](https://github.com/sbabi
|
By
tomzy
· #55210
·
|