mirror of
https://github.com/DrHo1y/orangepi-build.git
synced 2026-03-24 09:36:43 +07:00
388 lines
14 KiB
PHP
Executable File
388 lines
14 KiB
PHP
Executable File
ARCH=arm64
|
|
KERNEL_IMAGE_TYPE=Image
|
|
OFFSET=30
|
|
BOOTSCRIPT='boot-rockchip64.cmd:boot.cmd'
|
|
BOOTENV_FILE='rockchip.txt'
|
|
UBOOT_TARGET_MAP=";;idbloader.bin uboot.img trust.bin"
|
|
BOOTDELAY=0
|
|
OVERLAY_PREFIX='rockchip'
|
|
SERIALCON=${SERIALCON:=$([ $BRANCH == "legacy" ] && echo "ttyFIQ0:1500000" || echo "ttyS2:1500000")}
|
|
GOVERNOR="ondemand"
|
|
BOOTBRANCH="branch:v2020.10-rockchip64"
|
|
PACKAGE_LIST_FAMILY="ethtool"
|
|
PACKAGE_LIST_DESKTOP_FAMILY="fcitx fonts-wqy-zenhei"
|
|
|
|
RKBIN_DIR="$EXTER/cache/sources/rkbin-tools"
|
|
|
|
if [[ $BOOTCONFIG == *3399* ]]; then
|
|
|
|
CPUMIN=${CPUMIN:="408000"}
|
|
CPUMAX=${CPUMAX:="2016000"}
|
|
|
|
else # rk3328
|
|
|
|
CPUMIN=${CPUMIN:="408000"}
|
|
CPUMAX=${CPUMAX:="1296000"}
|
|
|
|
fi
|
|
|
|
if [[ $BOARD =~ orangepir1plus|orangepir1plus-lts ]]; then
|
|
|
|
BOOT_USE_BLOBS=yes
|
|
BOOT_SOC=rk3328
|
|
DDR_BLOB='rk33/rk3328_ddr_333MHz_v1.16.bin'
|
|
MINILOADER_BLOB='rk33/rk322xh_miniloader_v2.50.bin'
|
|
BL31_BLOB='rk33/rk322xh_bl31_v1.44.elf'
|
|
|
|
elif [[ $BOOTCONFIG == *3328* ]]; then
|
|
|
|
BOOT_RK3328_USE_AYUFAN_ATF=yes
|
|
|
|
else
|
|
|
|
ATFPATCHDIR='atf-rk3399'
|
|
|
|
fi
|
|
|
|
case $BRANCH in
|
|
|
|
current)
|
|
|
|
KERNELPATCHDIR='rockchip64-'$BRANCH
|
|
KERNELBRANCH="branch:orange-pi-5.10-rockchip64"
|
|
LINUXFAMILY=rockchip64
|
|
LINUXCONFIG='linux-rockchip64-'$BRANCH
|
|
|
|
;;
|
|
esac
|
|
|
|
prepare_boot_configuration()
|
|
{
|
|
|
|
if [[ $BOOT_USE_MAINLINE_ATF == yes ]]; then
|
|
|
|
UBOOT_TARGET_MAP="BL31=bl31.bin idbloader.img u-boot.itb;;idbloader.img u-boot.itb"
|
|
ATFSOURCE='https://github.com/ARM-software/arm-trusted-firmware'
|
|
ATF_COMPILER='aarch64-linux-gnu-'
|
|
ATFDIR='arm-trusted-firmware'
|
|
ATFBRANCH='tag:v2.2'
|
|
ATF_USE_GCC='> 6.3'
|
|
ATF_TARGET_MAP="M0_CROSS_COMPILE=arm-linux-gnueabi- PLAT=$BOOT_SOC bl31;;build/$BOOT_SOC/release/bl31/bl31.elf:bl31.bin"
|
|
ATF_TOOLCHAIN2="arm-linux-gnueabi-:> 5.0"
|
|
|
|
elif [[ $BOOT_USE_TPL_SPL_BLOB == yes ]]; then
|
|
|
|
UBOOT_TARGET_MAP="BL31=$RKBIN_DIR/$BL31_BLOB idbloader.img u-boot.itb;;idbloader.img u-boot.itb"
|
|
ATFSOURCE=''
|
|
ATF_COMPILE='no'
|
|
|
|
elif [[ $BOOT_USE_BLOBS == yes ]]; then
|
|
|
|
UBOOT_TARGET_MAP="u-boot-dtb.bin;;idbloader.bin uboot.img trust.bin"
|
|
ATFSOURCE=''
|
|
ATF_COMPILE='no'
|
|
|
|
elif [[ $BOOT_RK3399_LEGACY_HYBRID == yes ]]; then # to be removed
|
|
|
|
UBOOT_TARGET_MAP="BL31=$RKBIN_DIR/$BL31_BLOB u-boot-dtb.bin spl/u-boot-spl.bin u-boot.itb;;spl/u-boot-spl.bin u-boot.itb"
|
|
ATFSOURCE=''
|
|
ATF_COMPILE='no'
|
|
|
|
legacy_uboot_locations
|
|
|
|
elif [[ $BOOT_RK3328_USE_AYUFAN_ATF == yes ]]; then # to be removed
|
|
|
|
UBOOT_TARGET_MAP=";;idbloader.bin uboot.img trust.bin"
|
|
ATFSOURCE='https://github.com/ayufan-rock64/arm-trusted-firmware'
|
|
ATF_COMPILER='aarch64-linux-gnu-'
|
|
ATFDIR='arm-trusted-firmware-rockchip64'
|
|
ATFBRANCH='branch:rockchip'
|
|
ATF_USE_GCC='> 6.3'
|
|
ATF_TARGET_MAP='PLAT=rk322xh DEBUG=1 bl31;;trust.bin'
|
|
ATF_TOOLCHAIN2="arm-linux-gnueabi-:> 5.0"
|
|
|
|
legacy_uboot_locations
|
|
|
|
fi
|
|
|
|
if [[ $BOOT_SUPPORT_SPI == yes ]]; then
|
|
|
|
UBOOT_TARGET_MAP+=" rkspi_loader.img"
|
|
|
|
fi
|
|
}
|
|
|
|
legacy_uboot_locations()
|
|
{
|
|
|
|
BOOTSOURCE='https://github.com/ayufan-rock64/linux-u-boot'
|
|
BOOTDIR='u-boot-rockchip64'
|
|
BOOTBRANCH='branch:rockchip-master'
|
|
case $BRANCH in
|
|
legacy)
|
|
BOOTPATCHDIR="u-boot-rockchip64"
|
|
;;
|
|
*)
|
|
BOOTPATCHDIR="u-boot-rockchip64-dev"
|
|
;;
|
|
esac
|
|
}
|
|
|
|
uboot_custom_postprocess()
|
|
{
|
|
|
|
if [[ $BOOT_USE_MAINLINE_ATF == yes || $BOOT_USE_TPL_SPL_BLOB == yes ]]; then
|
|
|
|
if [[ $BOOT_SUPPORT_SPI == yes ]]; then
|
|
tools/mkimage -n rk3399 -T rkspi -d tpl/u-boot-tpl.bin:spl/u-boot-spl.bin rkspi_tpl_spl.img
|
|
dd if=/dev/zero of=rkspi_loader.img count=8128 status=none
|
|
dd if=rkspi_tpl_spl.img of=rkspi_loader.img conv=notrunc status=none
|
|
dd if=u-boot.itb of=rkspi_loader.img seek=768 conv=notrunc status=none
|
|
fi
|
|
|
|
elif [[ $BOOT_USE_BLOBS == yes ]]; then
|
|
|
|
local tempfile=$(mktemp)
|
|
tools/mkimage -n $BOOT_SOC -T rksd -d $RKBIN_DIR/$DDR_BLOB idbloader.bin
|
|
cat $RKBIN_DIR/$MINILOADER_BLOB >> idbloader.bin
|
|
loaderimage --pack --uboot ./u-boot-dtb.bin uboot.img 0x200000
|
|
trust_merger --replace bl31.elf $RKBIN_DIR/$BL31_BLOB trust.ini
|
|
|
|
elif [[ $BOOT_RK3399_LEGACY_HYBRID == yes ]]; then
|
|
|
|
# 3399
|
|
tools/mkimage -n rk3399 -T rksd -d $EXTER/cache/sources/rkbin-tools/rk33/rk3399_ddr_933MHz_v1.13.bin rksd_loader.img
|
|
cat spl/u-boot-spl.bin >> rksd_loader.img
|
|
dd if=u-boot.itb of=rksd_loader.img seek=448 conv=notrunc
|
|
cp rksd_loader.img $EXTER/.tmp/$uboot_name/usr/lib/$uboot_name/$f_dst
|
|
tools/mkimage -n rk3399 -T rksd -d $EXTER/cache/sources/rkbin-tools/rk33/rk3399_ddr_933MHz_v1.13.bin rkspi_loader.img
|
|
cat spl/u-boot-spl.bin >> rkspi_loader.img
|
|
for i in `seq 1 128`; do dd count=4 status=none; dd if=/dev/zero count=4 status=none; done < rkspi_loader.img > rkspi_loader.tmp
|
|
mv rkspi_loader.tmp rkspi_loader.img
|
|
dd if=u-boot.itb of=rkspi_loader.img seek=1024 conv=notrunc
|
|
cp rkspi_loader.img $EXTER/.tmp/$uboot_name/usr/lib/$uboot_name/$f_dst
|
|
|
|
elif [[ $BOOT_RK3328_USE_AYUFAN_ATF == yes ]]; then
|
|
|
|
# 3328
|
|
tools/mkimage -n rk3328 -T rksd -d $EXTER/cache/sources/rkbin-tools/rk33/rk3328_ddr_786MHz_v1.13.bin idbloader.bin
|
|
cat $EXTER/cache/sources/rkbin-tools/rk33/rk3328_miniloader_v2.46.bin >> idbloader.bin
|
|
loaderimage --pack --uboot ./u-boot-dtb.bin uboot.img 0x200000
|
|
|
|
else
|
|
echo "Unsupported u-boot processing configuration!"
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
write_uboot_platform()
|
|
{
|
|
|
|
if [[ -f $1/rksd_loader.img ]]; then # legacy rk3399 loader
|
|
|
|
dd if=$1/rksd_loader.img of=$2 seek=64 conv=notrunc status=none >/dev/null 2>&1
|
|
|
|
elif [[ -f $1/u-boot.itb ]]; then # $BOOT_USE_MAINLINE_ATF == yes || $BOOT_USE_TPL_SPL_BLOB == yes
|
|
|
|
dd if=$1/idbloader.img of=$2 seek=64 conv=notrunc status=none >/dev/null 2>&1
|
|
dd if=$1/u-boot.itb of=$2 seek=16384 conv=notrunc status=none >/dev/null 2>&1
|
|
|
|
elif [[ -f $1/uboot.img ]]; then # $BOOT_USE_BLOBS == yes
|
|
|
|
dd if=$1/idbloader.bin of=$2 seek=64 conv=notrunc status=none >/dev/null 2>&1
|
|
dd if=$1/uboot.img of=$2 seek=16384 conv=notrunc status=none >/dev/null 2>&1
|
|
dd if=$1/trust.bin of=$2 seek=24576 conv=notrunc status=none >/dev/null 2>&1
|
|
|
|
else
|
|
echo "Unsupported u-boot processing configuration!"
|
|
exit 1
|
|
|
|
fi
|
|
}
|
|
|
|
write_uboot_platform_mtd()
|
|
{
|
|
|
|
if [[ -f $1/rkspi_loader.img ]]; then
|
|
|
|
dd if=$1/rkspi_loader.img of=$2 conv=notrunc status=none >/dev/null 2>&1
|
|
|
|
else
|
|
|
|
echo "SPI u-boot image not found!"
|
|
exit 1
|
|
|
|
fi
|
|
}
|
|
|
|
setup_write_uboot_platform()
|
|
{
|
|
|
|
if grep -q "ubootpart" /proc/cmdline; then
|
|
|
|
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"
|
|
|
|
fi
|
|
}
|
|
|
|
atf_custom_postprocess()
|
|
{
|
|
|
|
# remove bl31.bin which can be 4+GiB in size and thus may fill the tmpfs mount
|
|
rm -f build/rk322xh/debug/bl31.bin
|
|
# ATF
|
|
trust_merger trust.ini
|
|
}
|
|
|
|
|
|
family_tweaks()
|
|
{
|
|
|
|
# execute specific tweaks function if present
|
|
[[ $(type -t family_tweaks_s) == function ]] && family_tweaks_s
|
|
|
|
if [[ $BOARD == orangepi4 && $BRANCH == legacy ]]; then
|
|
|
|
# Gstreamer library
|
|
GST_DIR="$EXTER/cache/sources/rk3399_gst_xserver_libs/gstreamer"
|
|
[[ ! -d "${SDCARD}"/usr/libexec ]] && mkdir -p "${SDCARD}"/usr/libexec
|
|
|
|
if [[ $RELEASE != buster ]]; then
|
|
|
|
cp ${GST_DIR}/${RELEASE}_build/etc/iqfiles ${SDCARD}/etc/ -rfa
|
|
cp ${GST_DIR}/${RELEASE}_build/usr/bin/* ${SDCARD}/usr/bin/ -rfa
|
|
cp ${GST_DIR}/${RELEASE}_build/usr/include/* ${SDCARD}/usr/include/ -rfa
|
|
cp ${GST_DIR}/${RELEASE}_build/usr/lib/* ${SDCARD}/usr/lib/ -rfa
|
|
cp ${GST_DIR}/${RELEASE}_build/usr/share/* ${SDCARD}/usr/share/ -rfa
|
|
cp ${GST_DIR}/overlay/etc/udev/rules.d/* ${SDCARD}/etc/udev/rules.d/ -rfa
|
|
cp ${GST_DIR}/overlay/usr/local/bin/* ${SDCARD}/usr/local/bin/ -rfa
|
|
|
|
XSERVER_DIR="$EXTER/cache/sources/rk3399_gst_xserver_libs/xserver"
|
|
cp ${XSERVER_DIR}/xserver_for_${RELEASE}/usr/bin/* ${SDCARD}/usr/bin/ -rfa
|
|
cp ${XSERVER_DIR}/xserver_for_${RELEASE}/usr/include/* ${SDCARD}/usr/include/ -rfa
|
|
cp ${XSERVER_DIR}/xserver_for_${RELEASE}/usr/lib/* ${SDCARD}/usr/lib/ -rfa
|
|
cp ${XSERVER_DIR}/xserver_for_${RELEASE}/usr/share/* ${SDCARD}/usr/share/ -rfa
|
|
cp ${XSERVER_DIR}/xserver_for_${RELEASE}/usr/libexec/* ${SDCARD}/usr/libexec/ -rfa
|
|
|
|
fi
|
|
|
|
if [[ $RELEASE == bionic ]]; then
|
|
|
|
cp ${GST_DIR}/${RELEASE}_build/usr/lib/gstreamer-1.0/* ${SDCARD}/usr/lib/aarch64-linux-gnu/gstreamer-1.0/ -rfa
|
|
|
|
#Mali GPU library
|
|
install_deb_chroot "$EXTER/cache/debs/rk3399/libmali-rk-midgard-t86x-r14p0-r0p0_1.6-1-1armbian3_arm64.deb"
|
|
|
|
elif [[ $RELEASE == xenial ]]; then
|
|
|
|
# Mail GPU library
|
|
sed 's/^#\(deb-src\)/\1/' -i ${SDCARD}/etc/apt/sources.list
|
|
chroot $SDCARD /bin/bash -c "apt-get -q update >/dev/null 2>&1"
|
|
chroot $SDCARD /bin/bash -c "apt-get -y build-dep xserver-xorg-core >/dev/null 2>&1"
|
|
chroot $SDCARD /bin/bash -c "apt-get remove -y --purge libegl1-mesa-dev:arm64 libgbm-dev:arm64 >/dev/null 2>&1"
|
|
chroot $SDCARD /bin/bash -c "apt-get install -q -y --no-install-recommends libxcb-xkb-dev libxfont-dev wayland-protocols >/dev/null 2>&1"
|
|
install_deb_chroot "$EXTER/cache/debs/rk3399/libmali-rk-dev_1.6-2_arm64.deb"
|
|
install_deb_chroot "$EXTER/cache/debs/rk3399/libmali-rk-midgard-t86x-r14p0_1.6-2_arm64.deb"
|
|
rm -rf ${SDCARD}/usr/lib/aarch64-linux-gnu/mesa-egl
|
|
|
|
# Gstreamer
|
|
cp ${GST_DIR}/others/gstreamer/usr/bin/* ${SDCARD}/usr/bin/ -rfa
|
|
cp ${GST_DIR}/others/gstreamer/usr/include/* ${SDCARD}/usr/include/ -rfa
|
|
cp ${GST_DIR}/others/gstreamer/usr/lib/* ${SDCARD}/usr/lib/ -rfa
|
|
cp ${GST_DIR}/others/gstreamer/usr/libexec/* ${SDCARD}/usr/libexec/ -rfa
|
|
cp ${GST_DIR}/others/gstreamer/usr/local/* ${SDCARD}/usr/local/ -rfa
|
|
cp ${GST_DIR}/others/gstreamer/usr/share/* ${SDCARD}/usr/share/ -rfa
|
|
|
|
elif [[ $RELEASE == buster ]]; then
|
|
|
|
#Multimedia Framework
|
|
chroot $SDCARD /bin/bash -c "apt-get -q update >/dev/null 2>&1"
|
|
chroot $SDCARD /bin/bash -c "apt-get remove -y --purge xserver-xorg-core mpv >/dev/null 2>&1"
|
|
chroot $SDCARD /bin/bash -c "apt install -q -y --no-install-recommends gstreamer1.0-plugins-ugly gstreamer1.0-plugins-bad \
|
|
qtgstreamer-plugins-qt5 qtmultimedia5-examples mesa-utils fonts-liberation python-bluez python-lightblue python-pil \
|
|
python-simplejson libshairplay0 libaacs0 libcec4 libfstrcmp0 libiso9660-11 liblirc-client0 libmariadb3 libmicrohttpd12 \
|
|
libpcrecpp0v5 libdav1d4 libssh-4 libtag1v5 gstreamer1.0-plugins-good liblua5.2-0 librubberband2 gstreamer1.0-libav \
|
|
gstreamer1.0-doc gstreamer1.0-tools gstreamer1.0-x gstreamer1.0-alsa gstreamer1.0-gl gstreamer1.0-gtk3 gstreamer1.0-qt5 \
|
|
gstreamer1.0-pulseaudio >/dev/null 2>&1"
|
|
|
|
install_deb_chroot "$EXTER/cache/debs/rk3399/buster_media/libmali-rk-midgard-t86x-r14p0-r0p0_1.6-1-1armbian3_arm64.deb"
|
|
install_deb_chroot "$EXTER/cache/debs/rk3399/buster_media/librga2_2.0.0-1_arm64.deb"
|
|
install_deb_chroot "$EXTER/cache/debs/rk3399/buster_media/librockchip-mpp1_1.4.0-3armbian3_arm64.deb"
|
|
install_deb_chroot "$EXTER/cache/debs/rk3399/buster_media/librockchip-vpu0_1.4.0-3armbian3_arm64.deb"
|
|
install_deb_chroot "$EXTER/cache/debs/rk3399/buster_media/xserver-xorg-core-rockchip_1.20.3-3armbian1_arm64.deb"
|
|
install_deb_chroot "$EXTER/cache/debs/rk3399/buster_media/gl4es_1.1.5-0armbian1_arm64.deb"
|
|
install_deb_chroot "$EXTER/cache/debs/rk3399/buster_media/gstreamer1.0-rockchip1_2%3a1.10-0armbian1_arm64.deb"
|
|
install_deb_chroot "$EXTER/cache/debs/rk3399/buster_media/gstreamer1.0-rockchip1-extra_3%3a20180115-3armbian1_arm64.deb"
|
|
install_deb_chroot "$EXTER/cache/debs/rk3399/buster_media/kodi-rk-bin_2%3a18.9-final-18.9buster0armbian3_arm64.deb"
|
|
install_deb_chroot "$EXTER/cache/debs/rk3399/buster_media/kodi-rk_2%3a18.9-final-18.9buster0armbian3_all.deb"
|
|
install_deb_chroot "$EXTER/cache/debs/rk3399/buster_media/mpv-legacy_2%3a2020.12.08.df805cfc84_arm64.deb"
|
|
install_deb_chroot "$EXTER/cache/debs/rk3399/buster_media/media-buster-legacy-rk3399_20.11.4_arm64.deb"
|
|
|
|
chroot $SDCARD /bin/bash -c "apt install -q -y --no-install-recommends xserver-xorg xserver-xorg-video-fbdev xserver-xorg-input-all \
|
|
xserver-xorg-input-libinput >/dev/null 2>&1"
|
|
|
|
cp ${GST_DIR}/${RELEASE}_build/etc/iqfiles ${SDCARD}/etc/ -rfa
|
|
cp ${GST_DIR}/${RELEASE}_build/usr/lib/* ${SDCARD}/usr/lib/ -rfa
|
|
cp ${GST_DIR}/overlay/etc/udev/rules.d/* ${SDCARD}/etc/udev/rules.d/ -rfa
|
|
cp ${GST_DIR}/overlay/usr/local/bin/* ${SDCARD}/usr/local/bin/ -rfa
|
|
|
|
fi
|
|
fi
|
|
|
|
if [[ $BOARD =~ orangepir1plus|orangepir1plus-lts ]]; then
|
|
|
|
|
|
# rename USB based network to lan0
|
|
mkdir -p $SDCARD/etc/udev/rules.d/
|
|
echo 'SUBSYSTEM=="net", ACTION=="add", DRIVERS=="r8152", KERNEL=="eth1", NAME="lan0"' > $SDCARD/etc/udev/rules.d/70-rename-lan.rules
|
|
|
|
# workaround - create old school initial network config since network manager have issues
|
|
#echo "auto eth0" >> $SDCARD/etc/network/interfaces
|
|
#echo " iface eth0 inet dhcp" >> $SDCARD/etc/network/interfaces
|
|
#echo "auto lan0" >> $SDCARD/etc/network/interfaces
|
|
#echo " iface lan0 inet dhcp" >> $SDCARD/etc/network/interfaces
|
|
fi
|
|
|
|
if [[ -f $SDCARD/lib/systemd/system/rk3399-bluetooth.service ]]; then
|
|
|
|
# install and enable Bluetooth
|
|
chroot $SDCARD /bin/bash -c "apt-get -y -qq install rfkill bluetooth bluez bluez-tools >/dev/null 2>&1"
|
|
chroot $SDCARD /bin/bash -c "systemctl --no-reload enable rk3399-bluetooth.service >/dev/null 2>&1"
|
|
fi
|
|
}
|
|
|
|
|
|
family_tweaks_bsp()
|
|
{
|
|
|
|
if [[ $BOOTCONFIG == *3328* ]] && [[ $BRANCH != legacy ]]; then
|
|
mkdir -p "$destination"/etc/X11/xorg.conf.d
|
|
cat <<-EOF > "$destination"/etc/X11/xorg.conf.d/02-driver.conf
|
|
# set fbdev as default driver.
|
|
Section "Device"
|
|
Identifier "NOGPU"
|
|
Driver "fbdev"
|
|
EndSection
|
|
EOF
|
|
fi
|
|
|
|
if [[ ${BOARD} == orangepi4 ]]; then
|
|
|
|
# Bluetooth for most of others (custom patchram is needed only in legacy)
|
|
install -m 755 $EXTER/packages/bsp/rk3399/brcm_patchram_plus_rk3399 $destination/usr/bin
|
|
cp $EXTER/packages/bsp/rk3399/rk3399-bluetooth.service $destination/lib/systemd/system/
|
|
fi
|
|
|
|
# Graphics and media
|
|
mkdir -p $destination/etc/udev/rules.d
|
|
cp $EXTER/packages/bsp/rk3399/50-mali.rules $destination/etc/udev/rules.d/
|
|
cp $EXTER/packages/bsp/rk3399/50-rk3399-vpu.rules $destination/etc/udev/rules.d/
|
|
mkdir -p $destination/etc/sysfs.d
|
|
cp $EXTER/packages/bsp/rk3399/20-gpu-governor.conf $destination/etc/sysfs.d/
|
|
}
|