2020-05-29 10:22:38 +00:00
|
|
|
# Allwinner A64 quad core 1GB/2GB RAM SoC GBE WiFi/BT
|
2017-04-18 16:35:50 +00:00
|
|
|
BOARD_NAME="Orange Pi Win"
|
2017-11-26 22:04:50 +00:00
|
|
|
BOARDFAMILY="sun50iw1"
|
2023-06-19 15:30:35 +00:00
|
|
|
BOARD_MAINTAINER=""
|
2017-04-18 16:35:50 +00:00
|
|
|
BOOTCONFIG="orangepi_win_defconfig"
|
2021-03-24 18:01:53 +00:00
|
|
|
KERNEL_TARGET="legacy,current,edge"
|
2023-03-21 14:40:22 +00:00
|
|
|
|
|
|
|
|
function post_family_tweaks_bsp__orangepiwin_BSP() {
|
|
|
|
|
display_alert "Installing BSP firmware and fixups"
|
|
|
|
|
|
|
|
|
|
if [[ $BRANCH == legacy ]]; then
|
|
|
|
|
|
|
|
|
|
# Bluetooth for most of others (custom patchram is needed only in legacy)
|
|
|
|
|
install -m 755 $SRC/packages/bsp/rk3399/brcm_patchram_plus_rk3399 $destination/usr/bin
|
|
|
|
|
cp $SRC/packages/bsp/rk3399/rk3399-bluetooth.service $destination/lib/systemd/system/
|
|
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
return 0
|
|
|
|
|
}
|