mirror of
https://github.com/DrHo1y/orangepi-build.git
synced 2026-03-23 09:06:43 +07:00
66 lines
2.2 KiB
Plaintext
66 lines
2.2 KiB
Plaintext
source "${BASH_SOURCE%/*}/include/rockchip64_common.inc"
|
|
|
|
BOOTBRANCH='branch:v2017.09-rk3588'
|
|
OVERLAY_PREFIX="rk356x"
|
|
|
|
CPUMIN=408000
|
|
CPUMAX=1800000
|
|
|
|
case $BRANCH in
|
|
|
|
legacy)
|
|
KERNELBRANCH='branch:orange-pi-5.10-rk35xx'
|
|
LINUXCONFIG='linux-rockchip-rk356x-legacy'
|
|
;;
|
|
current)
|
|
KERNELBRANCH='branch:orange-pi-6.6-rk35xx'
|
|
LINUXCONFIG='linux-rockchip-rk356x-current'
|
|
;;
|
|
esac
|
|
|
|
prepare_boot_configuration
|
|
|
|
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_bsp()
|
|
{
|
|
install -m 755 $EXTER/packages/bsp/adb/adbd-${ARCH} ${destination}/usr/bin/adbd
|
|
}
|
|
|
|
family_tweaks_s() {
|
|
|
|
rsync -a --chown=root:root "${EXTER}"/packages/bsp/rk356x/* ${SDCARD}/
|
|
|
|
chroot $SDCARD /bin/bash -c "apt-get -y -qq install dnsmasq v4l-utils swig python3-dev python3-setuptools bluez libncurses-dev" >> "${DEST}"/${LOG_SUBPATH}/install.log 2>&1
|
|
|
|
[[ ${RELEASE} == jammy ]] && rm ${SDCARD}/etc/profile.d/orangepi-ssh-title.sh # for adbd
|
|
chroot "${SDCARD}" /bin/bash -c "systemctl --no-reload enable usbdevice.service >/dev/null 2>&1"
|
|
|
|
if [[ -f "${SDCARD}"/etc/profile.d/im-config_wayland.sh && ${DESKTOP_ENVIRONMENT} =~ xfce|kde-plasma ]]; then
|
|
chroot $SDCARD /bin/bash -c "rm /etc/profile.d/im-config_wayland.sh" # for adbd
|
|
fi
|
|
|
|
install_balenaEtcher
|
|
install_wiringop
|
|
if [[ -f ${SDCARD}/etc/pulse/default.pa && ${SELECTED_CONFIGURATION} == desktop && ${BOARD} =~ orangepicm4|orangepi3b ]]; then
|
|
sed -i "s/auto-profiles = yes/auto-profiles = no/" ${SDCARD}/usr/share/pulseaudio/alsa-mixer/profile-sets/default.conf
|
|
|
|
echo "load-module module-alsa-sink device=hw:0,0 sink_name=AudioCodec-Playback sink_properties=\"device.description='Headphone'\"" >> ${SDCARD}/etc/pulse/default.pa
|
|
echo "load-module module-alsa-sink device=hw:1,0 sink_name=HDMI-Playback sink_properties=\"device.description='HDMI Audio'\"" >> ${SDCARD}/etc/pulse/default.pa
|
|
fi
|
|
}
|