mirror of
https://github.com/armbian/build
synced 2025-09-24 19:47:06 +07:00
* Introduce the `BOARD_MAINTAINER` in board config Yes, we have documented the maintainers in `armbian/documentation`. But it seem like that some of them don't maintain anymore. Use a separated repos make us forget to update it. So let's document here. What's more, defining this make us easier to update `.github/CODEOWNERS` * Set `BOARD_MAINTAINER` accroding to `armbian/documentation` * Guess `BOARD_MAINTAINER` Set he/she as board maintiner if he/she: 1. Create the board config 3. Commit at lease 3 times for the board config 3. Commit most for the board config * Guess `BOARD_MAINTAINER` Set he/she as board maintiner if he/she: 1. Create the board config 2. The only one to commit for the board config * Set `BOARD_MAINTAINER` to empty for other boards * AR-1712 fixing PR from wrong DB * Fixing maintainers Signed-off-by: Igor <igor@armbian.com> * Add variable to missing ones --------- Signed-off-by: Igor <igor@armbian.com> Co-authored-by: Rafal-Hacus <68160861+Rafal-Hacus@users.noreply.github.com> Co-authored-by: Igor <igor@armbian.com>
23 lines
651 B
Plaintext
23 lines
651 B
Plaintext
# Allwinner H3 quad core 512MB RAM WiFi
|
|
BOARD_NAME="Orange Pi Lite"
|
|
BOARDFAMILY="sun8i"
|
|
BOARD_MAINTAINER=""
|
|
BOOTCONFIG="orangepi_lite_defconfig"
|
|
MODULES_LEGACY="g_serial"
|
|
MODULES_CURRENT="g_serial"
|
|
KERNEL_TARGET="legacy,current,edge"
|
|
|
|
function post_family_tweaks_bsp__orangepilite_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
|
|
}
|