summaryrefslogtreecommitdiffstats
path: root/configs/platform-v7a/barebox-am335x-defaultenv
Commit message (Collapse)AuthorAgeFilesLines
* v7a: barebox: bootchooser: use GPT partition labelsRoland Hieber2023-12-132-2/+2
| | | | | | | | | | | | Now that every image is in GPT format, we can use the devnodes that include the partition label instead of the partition number to boot our rootfs. These names are more readable and also more robust against changing the order of the partitions. Make the change on all bareboxes that didn't have that yet. Signed-off-by: Roland Hieber <rhi@pengutronix.de> Link: https://lore.pengutronix.de/20231103225253.1349209-11-rhi@pengutronix.de Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
* v7a: add RAUC support for beaglebone blackRoland Hieber2023-08-156-2/+7
| | | | | | | | | | | * Enable barebox bootchooser framework * Add a redundant root partition to the genimage config * Add appropriate variables to the barebox defaultenv so the bootchooser can decide into which partition to boot * Add a state backend to the device tree fragment * Map partitions in rauc-udev compatibility layer Signed-off-by: Roland Hieber <rhi@pengutronix.de>
* platforms: revert to default systemd loglevelRoland Hieber2023-08-151-1/+1
| | | | | | | | | | | | | | | | | | By decreasing the systemd loglevel to "warning", the journal no longer contains useful lines like which units were started and stopped and when, which is quite sparse information for debugging. Remove the systemd.log_level from the kernel command line so systemd defaults to loglevel "info" (same level as loglevel=5 for the kernel). Keep the systemd.show_status setting on "auto" so that systemd only produces actual console output when the boot takes a significant amount of time, or produces error messages; so this change only changes the verbosity of the journal, not the console, on normal boots. Signed-off-by: Roland Hieber <rhi@pengutronix.de> Link: https://lore.barebox.org/20230623124755.2292833-2-rhi@pengutronix.de [remove meanwile eliminated special environment for rock3a, see 8ed4f77e790a24bd8c0d4fb15f95731eb1490be6 for reference] Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
* v7a: barebox: switch to new broken-cd device parameterAhmad Fatoum2022-09-301-0/+1
| | | | | | | | | | | The original patch didn't go upstream, because semantics were a bit odd, a Kconfig option changing behavior, but only for devices barebox probes. This imports v3 of the series into DistroKit. Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de> Link: https://lore.pengutronix.de/20220930162159.814389-3-a.fatoum@pengutronix.de Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
* v7a: barebox: clean up defaultenvsRoland Hieber2021-04-261-10/+0
| | | | | | | | | | | | | | | * The 9p bootsource is only available for qemu-vexpress * The bootstate entries were never evaluated because the system0 and system1 partitions were never set up on any boards Remove all unneeded variables to keep the defaultenvs lean. Fixes: ef189b9c3e0c9e3fed89 (2017-07-03, "platform-v7a: rpi2: create own rpi2 barebox defaultenv") Fixes: 785275ccb99d60da8abb (2017-07-03, "platform-v72: mx6: create own mx6 barebox defaultenv") Fixes: 26f5cf36862014ee9975 (2017-07-03, "platform-v7a: am335x: create own barebox defaultenv") Signed-off-by: Roland Hieber <rhi@pengutronix.de> Link: https://lore.pengutronix.de/20210426060526.32029-3-rhi@pengutronix.de Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
* barebox-am335x-defaultenv: remove state entriesRouven Czerwinski2018-12-072-2/+0
| | | | | | These will be moved into a redundant update layer. Signed-off-by: Rouven Czerwinski <r.czerwinski@pengutronix.de>
* barebox-am335x-defaultenv: add usb limit script from upstreamRouven Czerwinski2018-12-071-0/+5
| | | | | | | | The barebox beaglebone defaultenv contains an init script to adjust the usb-limit to 1300mA. Import from upstream to be consistent with the barebox defaultenv. Signed-off-by: Rouven Czerwinski <r.czerwinski@pengutronix.de>
* barebox-am335x-defaultenv: fix bootsource selectionRouven Czerwinski2018-12-071-4/+2
| | | | | | | | According to the board.c file from barebox, the bootsource can either be "mmc0" or "mmc1". Adjust the bootsource init file for barebox to automatically start a newly installed DistroKit. Signed-off-by: Rouven Czerwinski <r.czerwinski@pengutronix.de>
* barebox-v7a: remove bootchoser filesRouven Czerwinski2018-11-281-3/+0
| | | | | | | Remove bootchoser files which contain a typo and try to call a binary with an option that does not exist. Signed-off-by: Rouven Czerwinski <r.czerwinski@pengutronix.de>
* platform-v7a: barebox: don't break the console autodetectionRoland Hieber2018-02-191-0/+0
| | | | | | | | | The global variable linux.bootargs.console is set by barebox on startup to the chosen stdout path from the Device Tree. Rename the variable in our barebox defaultenvs to prevent shadowing this automatic variable, so that the stdout path is passed on to the Linux kernel. Signed-off-by: Roland Hieber <r.hieber@pengutronix.de>
* platform-v7a: am335x: create own barebox defaultenvChris Fiege2017-07-046-0/+29
Using this change the barebox-am335x package has its own defaultenv directory. Signed-off-by: Chris Fiege <c.fiege@pengutronix.de>