mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-08 19:46:10 +01:00
refactor(nxp): parameterize i.MX platform builders to reduce duplication
This refactoring reduces code duplication across i.MX93, i.MX8MP, and i.MX8MQ platforms by extracting common build logic into parameterized shared builders. This makes it easier to maintain and add new i.MX platforms while ensuring consistency across all platforms.
This commit is contained in:
parent
8b405e9c6d
commit
688ee555de
14 changed files with 398 additions and 598 deletions
33
nxp/common/lib/uboot-config.nix
Normal file
33
nxp/common/lib/uboot-config.nix
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
# Shared U-Boot configuration for i.MX platforms
|
||||
# This configuration is used across i.MX93, i.MX8MP, i.MX8MQ and similar platforms
|
||||
{
|
||||
# Generate common U-Boot extra configuration for i.MX platforms
|
||||
# ramdiskAddr and fdtAddr are platform-specific memory addresses
|
||||
imxCommonUbootConfig =
|
||||
{ ramdiskAddr, fdtAddr }:
|
||||
''
|
||||
CONFIG_USE_BOOTCOMMAND=y
|
||||
CONFIG_BOOTCOMMAND="setenv ramdisk_addr_r ${ramdiskAddr}; setenv fdt_addr_r ${fdtAddr}; run distro_bootcmd; "
|
||||
CONFIG_CMD_BOOTEFI_SELFTEST=y
|
||||
CONFIG_CMD_BOOTEFI=y
|
||||
CONFIG_EFI_LOADER=y
|
||||
CONFIG_BLK=y
|
||||
CONFIG_PARTITIONS=y
|
||||
CONFIG_DM_DEVICE_REMOVE=n
|
||||
CONFIG_CMD_CACHE=y
|
||||
'';
|
||||
|
||||
# Common U-Boot native build inputs for i.MX platforms
|
||||
imxCommonUbootNativeBuildInputs = [
|
||||
"bison"
|
||||
"flex"
|
||||
"openssl"
|
||||
"which"
|
||||
"ncurses"
|
||||
"libuuid"
|
||||
"gnutls"
|
||||
"openssl"
|
||||
"perl"
|
||||
"efitools"
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue