mirror of
https://github.com/armbian/build
synced 2025-09-24 19:47:06 +07:00
This fix impacts all boards that use extlinux.conf I have tested the aml-s9xx-box build to ensure that this works as expected. I think the only other boards that use extlinux.conf are those under the media kernel In testing I realized that I needed to add SRC_CMDLINE to the aml-s9xx-box config file to get the correct append line added to the extlinux.conf file Changes to be committed: modified: config/boards/aml-s9xx-box.tvb modified: config/sources/common.conf
15 lines
693 B
Bash
15 lines
693 B
Bash
#!/bin/bash
|
|
|
|
export FAST_CREATE_IMAGE='yes'
|
|
export MAIN_CMDLINE='rw no_console_suspend consoleblank=0 fsck.fix=yes fsck.repair=yes net.ifnames=0 splash plymouth.ignore-serial-consoles'
|
|
|
|
# boot loader configuration
|
|
[[ -z $BOOTSOURCE ]] && export BOOTSOURCE="$MAINLINE_UBOOT_SOURCE"
|
|
[[ -z $BOOTDIR ]] && export BOOTDIR="$MAINLINE_UBOOT_DIR"
|
|
[[ -z $BOOTBRANCH ]] && export BOOTBRANCH="${BOOTBRANCH_BOARD:-"tag:v2022.07"}"
|
|
|
|
# kernel configuration
|
|
[[ -z $KERNELDIR ]] && export KERNELDIR="$MAINLINE_KERNEL_DIR"
|
|
[[ -z $KERNELSOURCE ]] && export KERNELSOURCE="$MAINLINE_KERNEL_SOURCE"
|
|
[[ -z $KERNELBRANCH ]] && export KERNELBRANCH='branch:linux-6.0.y'
|