71 lines
2.0 KiB
Plaintext
71 lines
2.0 KiB
Plaintext
source "${BASH_SOURCE%/*}/include/rockchip64_common.inc"
|
|
|
|
OVERLAY_PREFIX='rk3588'
|
|
BOOTDELAY=0
|
|
|
|
CPUMIN=408000
|
|
CPUMAX=2400000
|
|
|
|
case $BRANCH in
|
|
|
|
legacy)
|
|
|
|
BOOTBRANCH='branch:v2017.09-rk3588'
|
|
UBOOT_COMPILER="aarch64-linux-gnu-"
|
|
UBOOT_USE_GCC='< 8.0'
|
|
|
|
KERNELBRANCH='branch:orange-pi-5.10-rk3588'
|
|
KERNELPATCHDIR='rockchip-rk3588-legacy'
|
|
KERNEL_USE_GCC='> 10.0'
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
prepare_boot_configuration
|
|
|
|
family_tweaks_bsp() {
|
|
|
|
install -m 755 $EXTER/packages/bsp/adb/adbd-${ARCH} ${destination}/usr/bin/adbd
|
|
}
|
|
|
|
|
|
install_balenaEtcher(){
|
|
|
|
if [[ $BUILD_DESKTOP == yes && $install_balena_etcher == yes ]]; then
|
|
|
|
balena_etcher_deb=balena-etcher-electron_1.7.9+5945ab1f_arm64.deb
|
|
balena_etcher_url="https://github.com/Itai-Nelken/BalenaEtcher-arm/releases/download/v1.7.9/${balena_etcher_deb}"
|
|
balena_etcher=${EXTER}/cache/debs/arm64/${balena_etcher_deb}
|
|
|
|
if [[ ! -f ${balena_etcher} ]]; then
|
|
wget -P ${EXTER}/cache/debs/arm64 ${balena_etcher_url}
|
|
fi
|
|
|
|
install_deb_chroot ${balena_etcher}
|
|
fi
|
|
}
|
|
|
|
family_tweaks_s() {
|
|
|
|
rsync -a --chown=root:root "${EXTER}"/packages/bsp/rk3588/* ${SDCARD}/
|
|
[[ ${RELEASE} == jammy ]] && rm ${SDCARD}/etc/profile.d/orangepi-ssh-title.sh # for adbd
|
|
|
|
if [[ -f "${SDCARD}"/etc/profile.d/im-config_wayland.sh ]]; then
|
|
chroot $SDCARD /bin/bash -c "rm /etc/profile.d/im-config_wayland.sh" # for adbd
|
|
fi
|
|
|
|
# enable additional services
|
|
chroot "${SDCARD}" /bin/bash -c "systemctl --no-reload enable usbdevice.service >/dev/null 2>&1"
|
|
|
|
sed "s/^SIZE=.*/SIZE=200M/" -i "${SDCARD}"/etc/default/orangepi-ramlog
|
|
chroot "${SDCARD}" /bin/bash -c "ln -fs /usr/share/zoneinfo/Asia/Shanghai /etc/localtime"
|
|
chroot "${SDCARD}" /bin/bash -c "dpkg-reconfigure -f noninteractive tzdata" >> "${DEST}"/${LOG_SUBPATH}/install.log 2>&1
|
|
|
|
chroot $SDCARD /bin/bash -c "apt-get -y -qq install lm-sensors usb-modeswitch tree dnsmasq v4l-utils swig python3-dev python3-setuptools bluez" >> "${DEST}"/${LOG_SUBPATH}/install.log 2>&1
|
|
|
|
install_wiringop
|
|
install_docker
|
|
install_balenaEtcher
|
|
}
|