* Add initial RISCV support * Add UEFI edge and current kernel configs * Cleanup and adjust packages * Those files were in wrong path * Fix locations * Ubuntu images built * Remove Debian support as its too fragile * Remove Pinta as it doesn't work under riscv * Limitation is only for building images * Remove obsolete switch * Cleanup major arch config files * Support for Docker building
15 lines
670 B
Bash
15 lines
670 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 bootsplash.bootfile=bootsplash.armbian'
|
|
|
|
# boot loader configuration
|
|
[[ -z $BOOTSOURCE ]] && export BOOTSOURCE="$MAINLINE_UBOOT_SOURCE"
|
|
[[ -z $BOOTDIR ]] && export BOOTDIR="$MAINLINE_UBOOT_DIR"
|
|
[[ -z $BOOTBRANCH ]] && export BOOTBRANCH='tag:v2022.10'
|
|
|
|
# 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'
|