mirror of
https://github.com/armbian/build
synced 2025-09-24 19:47:06 +07:00
- From https://github.com/edk2-porting/edk2-rk3588/releases/tag/v0.9.1 - For example, for `rock-5b_UEFI_Release_v0.9.1.img` - `UEFI_EDK2_BOARD_ID` is `rock-5b` - **Important**: this has no effect unless optional extension is enabled - to test this out: - make sure to read carefully the instructions at https://github.com/edk2-porting/edk2-rk3588/blob/master/README.md - suppose you previously built the regular u-boot version with: - `./compile.sh BOARD=rock-5b BRANCH=legacy RELEASE=jammy` - now you can build the UEFI version with: - `./compile.sh BOARD=rock-5b BRANCH=legacy RELEASE=jammy EXT=uefi-edk2-rk3588` - write the produced image to SD or eMMC and boot it - use normally, or enter "UMS" mode by selecting that option in the grub menu - You can write image to eMMC, boot it, enter UMS, write it again to NVMe, reboot, press <ESC> in UEFI and boot from NVMe - Also works if .img is written to eg USB stick, and UEFI edk2 is separately deployed to SPI flash - **Important**: make _absolutely_ sure you are able to force Maskrom mode (by shorting pins, pressing buttons, etc) before writing an UEFI image to eMMC; UEFI has no RockUSB ("Loader mode" support) at all. The new "initramfs-usb-gadget-ums" extension hopes to address this, but it is not guaranteed to work.
39 lines
1.9 KiB
Plaintext
39 lines
1.9 KiB
Plaintext
# Rockchip RK3588 octa core 4/8/16GB RAM SoC NVMe USB3 USB-C 2.5GbE eMMC
|
|
BOARD_NAME="Orange Pi 5 Plus"
|
|
BOARDFAMILY="rockchip-rk3588"
|
|
BOARD_MAINTAINER="efectn"
|
|
BOOTCONFIG="orangepi_5_plus_defconfig" # vendor name, not standard, see hook below, set BOOT_SOC below to compensate
|
|
BOOT_SOC="rk3588"
|
|
KERNEL_TARGET="legacy,edge"
|
|
KERNEL_TEST_TARGET="legacy"
|
|
FULL_DESKTOP="yes"
|
|
BOOT_LOGO="desktop"
|
|
BOOT_FDT_FILE="rockchip/rk3588-orangepi-5-plus.dtb"
|
|
BOOT_SCENARIO="spl-blobs"
|
|
BOOT_SUPPORT_SPI="yes"
|
|
BOOT_SPI_RKSPI_LOADER="yes"
|
|
IMAGE_PARTITION_TABLE="gpt"
|
|
SKIP_BOOTSPLASH="yes" # Skip boot splash patch, conflicts with CONFIG_VT=yes
|
|
BOOTFS_TYPE="ext4"
|
|
declare -g UEFI_EDK2_BOARD_ID="orangepi-5plus" # This _only_ used for uefi-edk2-rk3588 extension
|
|
|
|
function post_family_tweaks__orangepi5plus_naming_audios() {
|
|
display_alert "$BOARD" "Renaming orangepi5 audios" "info"
|
|
|
|
mkdir -p $SDCARD/etc/udev/rules.d/
|
|
echo 'SUBSYSTEM=="sound", ENV{ID_PATH}=="platform-hdmi0-sound", ENV{SOUND_DESCRIPTION}="HDMI0 Audio"' > $SDCARD/etc/udev/rules.d/90-naming-audios.rules
|
|
echo 'SUBSYSTEM=="sound", ENV{ID_PATH}=="platform-hdmi1-sound", ENV{SOUND_DESCRIPTION}="HDMI1 Audio"' >> $SDCARD/etc/udev/rules.d/90-naming-audios.rules
|
|
echo 'SUBSYSTEM=="sound", ENV{ID_PATH}=="platform-hdmiin-sound", ENV{SOUND_DESCRIPTION}="HDMI-In Audio"' >> $SDCARD/etc/udev/rules.d/90-naming-audios.rules
|
|
echo 'SUBSYSTEM=="sound", ENV{ID_PATH}=="platform-dp0-sound", ENV{SOUND_DESCRIPTION}="DP0 Audio"' >> $SDCARD/etc/udev/rules.d/90-naming-audios.rules
|
|
echo 'SUBSYSTEM=="sound", ENV{ID_PATH}=="platform-es8388-sound", ENV{SOUND_DESCRIPTION}="ES8388 Audio"' >> $SDCARD/etc/udev/rules.d/90-naming-audios.rules
|
|
|
|
return 0
|
|
}
|
|
|
|
# Override uboot family config for this board; let's avoid conditionals in family config.
|
|
function post_family_config__orangepi5plus_use_vendor_uboot() {
|
|
BOOTSOURCE='https://github.com/orangepi-xunlong/u-boot-orangepi.git'
|
|
BOOTBRANCH='branch:v2017.09-rk3588'
|
|
BOOTPATCHDIR="legacy"
|
|
}
|