forked from armbian/build
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
226 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
CONFIG_ARM=y | ||
CONFIG_SKIP_LOWLEVEL_INIT=y | ||
CONFIG_COUNTER_FREQUENCY=24000000 | ||
CONFIG_ARCH_ROCKCHIP=y | ||
CONFIG_SF_DEFAULT_SPEED=24000000 | ||
CONFIG_SF_DEFAULT_MODE=0x2000 | ||
CONFIG_DEFAULT_DEVICE_TREE="rockchip/rk3588s-orangepi-5" | ||
CONFIG_ROCKCHIP_RK3588=y | ||
CONFIG_ROCKCHIP_SPI_IMAGE=y | ||
CONFIG_SPL_SERIAL=y | ||
CONFIG_TARGET_EVB_RK3588=y | ||
CONFIG_DEBUG_UART_BASE=0xFEB50000 | ||
CONFIG_DEBUG_UART_CLOCK=24000000 | ||
CONFIG_SPL_SPI_FLASH_SUPPORT=y | ||
CONFIG_SPL_SPI=y | ||
CONFIG_SYS_LOAD_ADDR=0xc00800 | ||
CONFIG_PCI=y | ||
CONFIG_DEBUG_UART=y | ||
CONFIG_AHCI=y | ||
CONFIG_FIT=y | ||
CONFIG_FIT_VERBOSE=y | ||
CONFIG_SPL_FIT_SIGNATURE=y | ||
CONFIG_SPL_LOAD_FIT=y | ||
CONFIG_LEGACY_IMAGE_FORMAT=y | ||
CONFIG_DEFAULT_FDT_FILE="rockchip/rk3588s-orangepi-5.dtb" | ||
# CONFIG_DISPLAY_CPUINFO is not set | ||
CONFIG_DISPLAY_BOARDINFO_LATE=y | ||
CONFIG_SPL_MAX_SIZE=0x40000 | ||
CONFIG_SPL_PAD_TO=0x7f8000 | ||
# CONFIG_SPL_RAW_IMAGE_SUPPORT is not set | ||
CONFIG_SPL_SPI_LOAD=y | ||
CONFIG_SYS_SPI_U_BOOT_OFFS=0x60000 | ||
CONFIG_SPL_ATF=y | ||
CONFIG_CMD_GPIO=y | ||
CONFIG_CMD_GPT=y | ||
CONFIG_CMD_I2C=y | ||
CONFIG_CMD_MMC=y | ||
CONFIG_CMD_PCI=y | ||
CONFIG_CMD_USB=y | ||
# CONFIG_CMD_SETEXPR is not set | ||
CONFIG_CMD_REGULATOR=y | ||
# CONFIG_SPL_DOS_PARTITION is not set | ||
CONFIG_SPL_OF_CONTROL=y | ||
CONFIG_OF_LIVE=y | ||
CONFIG_OF_SPL_REMOVE_PROPS="clock-names interrupt-parent assigned-clocks assigned-clock-rates assigned-clock-parents" | ||
CONFIG_SPL_DM_SEQ_ALIAS=y | ||
CONFIG_SPL_REGMAP=y | ||
CONFIG_SPL_SYSCON=y | ||
CONFIG_AHCI_PCI=y | ||
CONFIG_DWC_AHCI=y | ||
CONFIG_SPL_CLK=y | ||
CONFIG_ROCKCHIP_GPIO=y | ||
CONFIG_SYS_I2C_ROCKCHIP=y | ||
CONFIG_MISC=y | ||
CONFIG_SUPPORT_EMMC_RPMB=y | ||
CONFIG_MMC_DW=y | ||
CONFIG_MMC_DW_ROCKCHIP=y | ||
CONFIG_SF_DEFAULT_BUS=5 | ||
CONFIG_SPI_FLASH_SFDP_SUPPORT=y | ||
CONFIG_SPI_FLASH_XMC=y | ||
CONFIG_PHY_MOTORCOMM=y | ||
CONFIG_DWC_ETH_QOS=y | ||
CONFIG_DWC_ETH_QOS_ROCKCHIP=y | ||
CONFIG_NVME_PCI=y | ||
CONFIG_PCIE_DW_ROCKCHIP=y | ||
CONFIG_PHY_ROCKCHIP_INNO_USB2=y | ||
CONFIG_PHY_ROCKCHIP_NANENG_COMBOPHY=y | ||
CONFIG_PHY_ROCKCHIP_USBDP=y | ||
CONFIG_SPL_PINCTRL=y | ||
CONFIG_PWM_ROCKCHIP=y | ||
CONFIG_SPL_RAM=y | ||
CONFIG_SCSI=y | ||
CONFIG_BAUDRATE=1500000 | ||
CONFIG_DEBUG_UART_SHIFT=2 | ||
CONFIG_SYS_NS16550_MEM32=y | ||
CONFIG_ROCKCHIP_SFC=y | ||
CONFIG_SYSRESET=y | ||
CONFIG_USB=y | ||
CONFIG_USB_XHCI_HCD=y | ||
CONFIG_USB_EHCI_HCD=y | ||
CONFIG_USB_EHCI_GENERIC=y | ||
CONFIG_USB_OHCI_HCD=y | ||
CONFIG_USB_OHCI_GENERIC=y | ||
CONFIG_USB_DWC3=y | ||
CONFIG_USB_DWC3_GENERIC=y | ||
CONFIG_ERRNO_STR=y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,7 @@ BOOT_SPI_RKSPI_LOADER="yes" | |
IMAGE_PARTITION_TABLE="gpt" | ||
KERNEL_UPGRADE_FREEZE="[email protected]" | ||
declare -g UEFI_EDK2_BOARD_ID="orangepi-5" # This _only_ used for uefi-edk2-rk3588 extension | ||
BOOTPATCHDIR="v2024.01/board_${BOARD}" | ||
|
||
# @TODO: consider removing those, as the defaults in rockchip64_common have been bumped up | ||
DDR_BLOB='rk35/rk3588_ddr_lp4_2112MHz_lp5_2736MHz_v1.15.bin' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
CONFIG_ARM=y | ||
CONFIG_SKIP_LOWLEVEL_INIT=y | ||
CONFIG_COUNTER_FREQUENCY=24000000 | ||
CONFIG_ARCH_ROCKCHIP=y | ||
CONFIG_SF_DEFAULT_SPEED=24000000 | ||
CONFIG_SF_DEFAULT_MODE=0x2000 | ||
CONFIG_DEFAULT_DEVICE_TREE="rockchip/rk3588s-orangepi-5" | ||
CONFIG_ROCKCHIP_RK3588=y | ||
CONFIG_ROCKCHIP_SPI_IMAGE=y | ||
CONFIG_SPL_SERIAL=y | ||
CONFIG_TARGET_EVB_RK3588=y | ||
CONFIG_DEBUG_UART_BASE=0xFEB50000 | ||
CONFIG_DEBUG_UART_CLOCK=24000000 | ||
CONFIG_SPL_SPI_FLASH_SUPPORT=y | ||
CONFIG_SPL_SPI=y | ||
CONFIG_SYS_LOAD_ADDR=0xc00800 | ||
CONFIG_PCI=y | ||
CONFIG_DEBUG_UART=y | ||
CONFIG_AHCI=y | ||
CONFIG_FIT=y | ||
CONFIG_FIT_VERBOSE=y | ||
CONFIG_SPL_FIT_SIGNATURE=y | ||
CONFIG_SPL_LOAD_FIT=y | ||
CONFIG_LEGACY_IMAGE_FORMAT=y | ||
CONFIG_DEFAULT_FDT_FILE="rockchip/rk3588s-orangepi-5.dtb" | ||
# CONFIG_DISPLAY_CPUINFO is not set | ||
CONFIG_DISPLAY_BOARDINFO_LATE=y | ||
CONFIG_SPL_MAX_SIZE=0x40000 | ||
CONFIG_SPL_PAD_TO=0x7f8000 | ||
# CONFIG_SPL_RAW_IMAGE_SUPPORT is not set | ||
CONFIG_SPL_SPI_LOAD=y | ||
CONFIG_SYS_SPI_U_BOOT_OFFS=0x60000 | ||
CONFIG_SPL_ATF=y | ||
CONFIG_CMD_GPIO=y | ||
CONFIG_CMD_GPT=y | ||
CONFIG_CMD_I2C=y | ||
CONFIG_CMD_MMC=y | ||
CONFIG_CMD_PCI=y | ||
CONFIG_CMD_USB=y | ||
# CONFIG_CMD_SETEXPR is not set | ||
CONFIG_CMD_REGULATOR=y | ||
# CONFIG_SPL_DOS_PARTITION is not set | ||
CONFIG_SPL_OF_CONTROL=y | ||
CONFIG_OF_LIVE=y | ||
CONFIG_OF_SPL_REMOVE_PROPS="clock-names interrupt-parent assigned-clocks assigned-clock-rates assigned-clock-parents" | ||
CONFIG_SPL_DM_SEQ_ALIAS=y | ||
CONFIG_SPL_REGMAP=y | ||
CONFIG_SPL_SYSCON=y | ||
CONFIG_AHCI_PCI=y | ||
CONFIG_DWC_AHCI=y | ||
CONFIG_SPL_CLK=y | ||
CONFIG_ROCKCHIP_GPIO=y | ||
CONFIG_SYS_I2C_ROCKCHIP=y | ||
CONFIG_MISC=y | ||
CONFIG_SUPPORT_EMMC_RPMB=y | ||
CONFIG_MMC_DW=y | ||
CONFIG_MMC_DW_ROCKCHIP=y | ||
CONFIG_SF_DEFAULT_BUS=5 | ||
CONFIG_SPI_FLASH_SFDP_SUPPORT=y | ||
CONFIG_SPI_FLASH_XMC=y | ||
CONFIG_PHY_MOTORCOMM=y | ||
CONFIG_DWC_ETH_QOS=y | ||
CONFIG_DWC_ETH_QOS_ROCKCHIP=y | ||
CONFIG_NVME_PCI=y | ||
CONFIG_PCIE_DW_ROCKCHIP=y | ||
CONFIG_PHY_ROCKCHIP_INNO_USB2=y | ||
CONFIG_PHY_ROCKCHIP_NANENG_COMBOPHY=y | ||
CONFIG_PHY_ROCKCHIP_USBDP=y | ||
CONFIG_SPL_PINCTRL=y | ||
CONFIG_PWM_ROCKCHIP=y | ||
CONFIG_SPL_RAM=y | ||
CONFIG_SCSI=y | ||
CONFIG_BAUDRATE=1500000 | ||
CONFIG_DEBUG_UART_SHIFT=2 | ||
CONFIG_SYS_NS16550_MEM32=y | ||
CONFIG_ROCKCHIP_SFC=y | ||
CONFIG_SYSRESET=y | ||
CONFIG_USB=y | ||
CONFIG_USB_XHCI_HCD=y | ||
CONFIG_USB_EHCI_HCD=y | ||
CONFIG_USB_EHCI_GENERIC=y | ||
CONFIG_USB_OHCI_HCD=y | ||
CONFIG_USB_OHCI_GENERIC=y | ||
CONFIG_USB_DWC3=y | ||
CONFIG_USB_DWC3_GENERIC=y | ||
CONFIG_ERRNO_STR=y | ||
CONFIG_ENV_IS_IN_FAT=y | ||
CONFIG_ENV_FAT_INTERFACE="mmc" | ||
CONFIG_ENV_FAT_DEVICE_AND_PART="0:1" | ||
CONFIG_ENV_FAT_FILE="uboot.env" | ||
CONFIG_FAT_WRITE=y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/baseconfig b/newconfig | ||
index 33529d4ca..43528a279 100644 | ||
--- a/baseconfig | ||
+++ b/newconfig | ||
@@ -84,3 +84,8 @@ CONFIG_USB_OHCI_GENERIC=y | ||
CONFIG_USB_DWC3=y | ||
CONFIG_USB_DWC3_GENERIC=y | ||
CONFIG_ERRNO_STR=y | ||
+CONFIG_ENV_IS_IN_FAT=y | ||
+CONFIG_ENV_FAT_INTERFACE="mmc" | ||
+CONFIG_ENV_FAT_DEVICE_AND_PART="0:1" | ||
+CONFIG_ENV_FAT_FILE="uboot.env" | ||
+CONFIG_FAT_WRITE=y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/configs/orangepi-5-rk3588s_defconfig b/configs/orangepi-5-rk3588s_defconfig | ||
index 33529d4ca..43528a279 100644 | ||
--- a/configs/orangepi-5-rk3588s_defconfig | ||
+++ b/configs/orangepi-5-rk3588s_defconfig | ||
@@ -84,3 +84,8 @@ CONFIG_USB_OHCI_GENERIC=y | ||
CONFIG_USB_DWC3=y | ||
CONFIG_USB_DWC3_GENERIC=y | ||
CONFIG_ERRNO_STR=y | ||
+CONFIG_ENV_IS_IN_FAT=y | ||
+CONFIG_ENV_FAT_INTERFACE="mmc" | ||
+CONFIG_ENV_FAT_DEVICE_AND_PART="0:1" | ||
+CONFIG_ENV_FAT_FILE="uboot.env" | ||
+CONFIG_FAT_WRITE=y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/configs/orangepi-5-rk3588s_defconfig b/configs/orangepi-5-rk3588s_defconfig | ||
index 33529d4ca..43528a279 100644 | ||
--- a/configs/orangepi-5-rk3588s_defconfig | ||
+++ b/configs/orangepi-5-rk3588s_defconfig | ||
@@ -84,3 +84,8 @@ CONFIG_USB_OHCI_GENERIC=y | ||
CONFIG_USB_DWC3=y | ||
CONFIG_USB_DWC3_GENERIC=y | ||
CONFIG_ERRNO_STR=y | ||
+CONFIG_ENV_IS_IN_FAT=y | ||
+CONFIG_ENV_FAT_INTERFACE="mmc" | ||
+CONFIG_ENV_FAT_DEVICE_AND_PART="0:1" | ||
+CONFIG_ENV_FAT_FILE="uboot.env" | ||
+CONFIG_FAT_WRITE=y |
13 changes: 0 additions & 13 deletions
13
userpatches/u-boot/v2024.01/board_orangepi5/0015-persist-env.patch
This file was deleted.
Oops, something went wrong.