summaryrefslogtreecommitdiffstats
path: root/recipes-bsp/bootfiles/rpi-cmdline.bb
Commit message (Collapse)AuthorAgeFilesLines
* rpi-cmdline: Support ethernet over USBAndrew Penner2021-09-241-0/+8
| | | | | | Support ethernet over USB via config.txt and cmdline.txt Signed-off-by: Andrew Penner <andrew.penner@protonmail.com>
* rpi-cmdline: Make rootfstype easier to customizeAndrei Gherzan2021-07-221-1/+3
| | | | Signed-off-by: Andrei Gherzan <andrei.gherzan@huawei.com>
* rpi-cmdline: Package is machine-specificPaul Barker2021-06-181-0/+2
| | | | | | | The cmdline.txt file generated by this recipe includes machine-specific information so we should set PACKAGE_ARCH appropriately. Signed-off-by: Paul Barker <paul@pbarker.dev>
* recipes-bsp: Add support for Raspberry Pi HD quality camerasss222132021-05-191-0/+2
| | | | Signed-off-by: Bohung-Nian <n0404.n0404@gmail.com>
* rpi-cmdline: remove unnecessary spaces from cmdline.txtBartłomiej Burdukiewicz2021-02-081-1/+1
| | | | | | | | | | With current recipe formatting CMDLINE variable contains many unnecessary white spaces. This patch allow to drop unnecessary spaces at the moment of writing them to cmdline.txt. This will improve readability of cmdline.txt, /proc/cmdline and dmesg output. Signed-off-by: Bartłomiej Burdukiewicz <bartlomiej.burdukiewicz@gmail.com>
* rpi-cmdline: Move cmdline.txt generation to a separate recipePaul Barker2020-11-271-0/+49
Instead of generating cmdline.txt in the kernel recipe, it is generated in a standalone recipe and pulled in as a dependency of the bootfiles recipe. This simplifies the process of using a linux-yocto, linux-mainline or similiar kernel recipe instead of linux-raspberrypi. In the rpi-cmdline recipe the command line is built from fragments which can all be easily overridden. The variables `SERIAL` and `CMA` are renamed to `CMDLINE_SERIAL` and `CMDLINE_CMA` for consistency. The cmdline.txt file is created in the do_compile step to allow further customisation via do_compile_append if needed. Signed-off-by: Paul Barker <pbarker@konsulko.com>