mirror of
https://github.com/DrHo1y/orangepi-build.git
synced 2026-03-24 01:26:43 +07:00
63 lines
1.9 KiB
PHP
63 lines
1.9 KiB
PHP
ARCH=arm64
|
|
ATF_TARGET_MAP="PLAT=$ATF_PLAT DEBUG=1 bl31;;build/$ATF_PLAT/debug/bl31.bin"
|
|
BOOTDELAY=1
|
|
BOOTPATCHDIR='u-boot-sunxi'
|
|
BOOTENV_FILE='sunxi.txt'
|
|
UBOOT_TARGET_MAP=';;spl/sunxi-spl.bin u-boot.itb'
|
|
BOOTSCRIPT='boot-sun50i-next.cmd:boot.cmd'
|
|
LINUXFAMILY=sunxi64
|
|
PACKAGE_LIST_DESKTOP_FAMILY="fcitx fonts-wqy-zenhei"
|
|
|
|
case $BRANCH in
|
|
|
|
current)
|
|
|
|
KERNELBRANCH="branch:orange-pi-5.4"
|
|
KERNELPATCHDIR='sunxi-'$BRANCH
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
family_tweaks()
|
|
{
|
|
# execute specific tweaks function if present
|
|
[[ $(type -t family_tweaks_s) == function ]] && family_tweaks_s
|
|
#cp $SRC/packages/blobs/splash/orangepi-u-boot-24.bmp $SDCARD/boot/boot.bmp
|
|
}
|
|
|
|
write_uboot_platform()
|
|
{
|
|
if [[ -f $1/boot0_sdcard.fex ]]; then # legacy h616/h6 loader
|
|
dd if=$1/boot0_sdcard.fex of=$2 bs=8k seek=1 conv=fsync > /dev/null 2>&1
|
|
dd if=$1/boot_package.fex of=$2 bs=8k seek=2050 conv=fsync > /dev/null 2>&1 || true
|
|
elif [[ -f $1/u-boot-with-dtb.bin ]]; then # legacy a64 loader
|
|
dd if=$1/u-boot-with-dtb.bin of=$2 bs=1k seek=8 conv=fsync > /dev/null 2>&1 || true
|
|
else
|
|
[[ -f $1/sunxi-spl.bin ]] && dd if=$1/sunxi-spl.bin of=$2 bs=8k seek=1 conv=fsync > /dev/null 2>&1
|
|
[[ -f $1/u-boot.itb ]] && dd if=$1/u-boot.itb of=$2 bs=8k seek=5 conv=fsync > /dev/null 2>&1 || true
|
|
fi
|
|
}
|
|
|
|
setup_write_uboot_platform()
|
|
{
|
|
if grep -q "ubootpart" /proc/cmdline; then
|
|
# mainline with new boot script
|
|
local tmp=$(cat /proc/cmdline)
|
|
tmp="${tmp##*ubootpart=}"
|
|
tmp="${tmp%% *}"
|
|
[[ -n $tmp ]] && local part=$(findfs PARTUUID=$tmp 2>/dev/null)
|
|
[[ -n $part ]] && local dev=$(lsblk -n -o PKNAME $part 2>/dev/null)
|
|
[[ -n $dev ]] && DEVICE="/dev/$dev"
|
|
else
|
|
# legacy or old boot script
|
|
local tmp=$(cat /proc/cmdline)
|
|
tmp="${tmp##*root=}"
|
|
tmp="${tmp%% *}"
|
|
[[ -n $tmp ]] && local part=$(findfs $tmp 2>/dev/null)
|
|
[[ -n $part ]] && local dev=$(lsblk -n -o PKNAME $part 2>/dev/null)
|
|
# do not try to write u-boot to USB devices
|
|
[[ -n $dev && $dev == mmcblk* ]] && DEVICE="/dev/$dev"
|
|
fi
|
|
}
|