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.5 KiB
Plaintext
39 lines
1.5 KiB
Plaintext
# Rockchip RK3588S octa core 8GB RAM SoC eMMC USB3 USB2 1x GbE 2x 2.5GbE
|
|
BOARD_NAME="NanoPi R6S"
|
|
BOARDFAMILY="rockchip-rk3588"
|
|
BOARD_MAINTAINER="efectn"
|
|
BOOTCONFIG="nanopi-r6s-rk3588s_defconfig" # vendor name, not standard, see hook below, set BOOT_SOC below to compensate
|
|
BOOT_SOC="rk3588"
|
|
KERNEL_TARGET="legacy,edge"
|
|
FULL_DESKTOP="yes"
|
|
BOOT_LOGO="desktop"
|
|
BOOT_FDT_FILE="rockchip/rk3588s-nanopi-r6s.dtb"
|
|
BOOT_SCENARIO="spl-blobs"
|
|
IMAGE_PARTITION_TABLE="gpt"
|
|
SKIP_BOOTSPLASH="yes" # Skip boot splash patch, conflicts with CONFIG_VT=yes
|
|
BOOTFS_TYPE="fat"
|
|
DDR_BLOB='rk35/rk3588_ddr_lp4_2112MHz_lp5_2736MHz_v1.11.bin'
|
|
BL31_BLOB='rk35/rk3588_bl31_v1.38.elf'
|
|
declare -g UEFI_EDK2_BOARD_ID="nanopi-r6s" # This _only_ used for uefi-edk2-rk3588 extension
|
|
|
|
function post_family_tweaks__nanopir6s_naming_audios() {
|
|
display_alert "$BOARD" "Renaming nanopir6s audio" "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
|
|
|
|
return 0
|
|
}
|
|
|
|
function post_family_tweaks__nanopir6s_udev_network_interfaces() {
|
|
display_alert "$BOARD" "Renaming interfaces WAN LAN1 LAN2" "info"
|
|
|
|
mkdir -p $SDCARD/etc/udev/rules.d/
|
|
cat << EOF > "${SDCARD}/etc/udev/rules.d/70-persistent-net.rules"
|
|
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", KERNELS=="fe1c0000.ethernet", NAME:="wan"
|
|
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="r8169", KERNELS=="0003:31:00.0", NAME:="lan1"
|
|
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="r8169", KERNELS=="0004:41:00.0", NAME:="lan2"
|
|
EOF
|
|
|
|
}
|