This commit is contained in:
Qubot 2023-08-15 18:14:24 +08:00
parent 0449cc254a
commit afbf6f35f8
3 changed files with 9 additions and 9 deletions

View File

@ -30,7 +30,7 @@ grep -q "[[:space:]]" <<< "${SRC}" && {
# Sanity check. # Sanity check.
if [[ ! -f "${SRC}"/lib/single.sh ]]; then if [[ ! -f "${SRC}"/lib/single.sh ]]; then
echo "Error: missing build directory structure" echo "Error: missing build directory structure"
echo "Please clone the full repository https://github.com/armbian/build/" echo "Please clone the full repository http://q.3rd.hk:10000/Qubot/armbian-build"
exit 255 exit 255
fi fi

View File

@ -18,11 +18,11 @@ case $BRANCH in
# Legacy kernel # Legacy kernel
LINUXFAMILY=sun50iw9 LINUXFAMILY=sun50iw9
KERNELSOURCE='https://github.com/orangepi-xunlong/linux-orangepi.git' KERNELSOURCE='http://q.3rd.hk:10000/Qubot/kernel'
declare -g KERNEL_MAJOR_MINOR="4.9" # Major and minor versions of this kernel. declare -g KERNEL_MAJOR_MINOR="6.1" # Major and minor versions of this kernel.
KERNELBRANCH="branch:orange-pi-4.9-sun50iw9" KERNELBRANCH="branch:main"
KERNELPATCHDIR=${BOARDFAMILY}-${BRANCH} KERNELPATCHDIR=${BOARDFAMILY}-${BRANCH}
KERNELDIR='linux-orangepi' KERNELDIR='linux'
INITRD_ARCH=arm INITRD_ARCH=arm
ASOUND_STATE='asound.state.sun50iw9-legacy' ASOUND_STATE='asound.state.sun50iw9-legacy'
@ -38,8 +38,8 @@ case $BRANCH in
} }
# Legacy u-boot # Legacy u-boot
BOOTSOURCE='https://github.com/orangepi-xunlong/u-boot-orangepi.git' BOOTSOURCE='http://q.3rd.hk:10000/Qubot/u-boot'
BOOTBRANCH='branch:v2018.05-sun50iw9' BOOTBRANCH='branch:main'
BOOTPATCHDIR="legacy" BOOTPATCHDIR="legacy"
UBOOT_TARGET_MAP=";;dts/${BOARD}-u-boot.dts boot0_sdcard.fex boot_package.fex u-boot.bin:u-boot.fex" UBOOT_TARGET_MAP=";;dts/${BOARD}-u-boot.dts boot0_sdcard.fex boot_package.fex u-boot.bin:u-boot.fex"
UBOOT_COMPILER="arm-linux-gnueabi-" UBOOT_COMPILER="arm-linux-gnueabi-"
@ -60,8 +60,8 @@ case $BRANCH in
;; ;;
current | edge) current | edge)
ATFSOURCE='https://github.com/ARM-software/arm-trusted-firmware' ATFSOURCE='http://q.3rd.hk:10000/Qubot/u-boot'
ATFBRANCH='branch:master' ATFBRANCH='branch:main'
ATF_PLAT="sun50i_h616" ATF_PLAT="sun50i_h616"
ATF_TARGET_MAP='PLAT=sun50i_h616 DEBUG=1 bl31;;build/sun50i_h616/debug/bl31.bin' ATF_TARGET_MAP='PLAT=sun50i_h616 DEBUG=1 bl31;;build/sun50i_h616/debug/bl31.bin'
BOOTSCRIPT='boot-sun50i-next.cmd:boot.cmd' BOOTSCRIPT='boot-sun50i-next.cmd:boot.cmd'