common.conf 1000 B

123456789101112131415161718192021222324
  1. #
  2. # SPDX-License-Identifier: GPL-2.0
  3. #
  4. # Copyright (c) 2013-2023 Igor Pecovnik, igor@armbian.com
  5. #
  6. # This file is a part of the Armbian Build Framework
  7. # https://github.com/armbian/build/
  8. #
  9. # this is sourced before any other arch specific config file, always. see main-config.sh
  10. export FAST_CREATE_IMAGE='yes'
  11. export MAIN_CMDLINE='rw no_console_suspend consoleblank=0 fsck.fix=yes fsck.repair=yes net.ifnames=0 splash plymouth.ignore-serial-consoles'
  12. # boot loader configuration
  13. [[ -z $BOOTSOURCE ]] && export BOOTSOURCE="$MAINLINE_UBOOT_SOURCE"
  14. [[ -z $BOOTDIR ]] && export BOOTDIR="$MAINLINE_UBOOT_DIR"
  15. [[ -z $BOOTBRANCH ]] && export BOOTBRANCH="${BOOTBRANCH_BOARD:-"tag:v2022.07"}"
  16. # kernel configuration
  17. [[ -z $KERNELDIR ]] && export KERNELDIR="$MAINLINE_KERNEL_DIR"
  18. [[ -z $KERNELSOURCE ]] && export KERNELSOURCE="$MAINLINE_KERNEL_SOURCE"
  19. [[ -z $KERNELBRANCH ]] && export KERNELBRANCH='branch:linux-6.0.y'
  20. true # make sure to exit with 0 status; this protects against shortcircuits etc above.