2020-04-19 16:12:00 +00:00
{ stdenv
, lib
, bc
, bison
, dtc
2022-08-21 15:26:40 +00:00
, fetchFromGitHub
, fetchpatch
, fetchurl
2020-04-19 16:12:00 +00:00
, flex
2022-08-21 15:26:40 +00:00
, gnutls
2023-02-27 05:25:28 +00:00
, installShellFiles
2022-08-21 15:26:40 +00:00
, libuuid
, meson-tools
, ncurses
2020-04-19 16:12:00 +00:00
, openssl
2024-03-20 00:59:38 +00:00
, rkbin
2020-04-19 16:12:00 +00:00
, swig
2022-04-26 02:19:21 +00:00
, which
2023-09-16 02:03:52 +00:00
, python3
2024-08-21 17:05:30 +00:00
, perl
2020-04-19 16:12:00 +00:00
, armTrustedFirmwareAllwinner
2023-04-05 20:41:15 +00:00
, armTrustedFirmwareAllwinnerH6
2021-06-04 23:20:46 +00:00
, armTrustedFirmwareAllwinnerH616
2020-04-19 16:12:00 +00:00
, armTrustedFirmwareRK3328
, armTrustedFirmwareRK3399
2024-03-20 00:59:38 +00:00
, armTrustedFirmwareRK3588
2019-12-05 21:19:26 +00:00
, armTrustedFirmwareS905
2018-07-21 00:44:44 +00:00
, buildPackages
2017-06-28 20:30:13 +00:00
} :
2009-11-08 00:32:12 +00:00
2010-03-01 23:22:48 +00:00
let
2024-10-07 23:47:09 +00:00
defaultVersion = " 2 0 2 4 . 1 0 " ;
2019-11-27 20:21:24 +00:00
defaultSrc = fetchurl {
2023-07-11 02:41:46 +00:00
url = " h t t p s : / / f t p . d e n x . d e / p u b / u - b o o t / u - b o o t - ${ defaultVersion } . t a r . b z 2 " ;
2024-10-07 23:47:09 +00:00
hash = " s h a 2 5 6 - s o 2 v S s F + Q x V j Y w e L 9 R A p d Y Q T f 2 3 1 D 8 7 Z s S 3 z T 2 G p L 7 A = " ;
2019-11-27 20:21:24 +00:00
} ;
2023-11-04 08:21:51 +00:00
# Dependencies for the tools need to be included as either native or cross,
# depending on which we're building
toolsDeps = [
ncurses # tools/kwboot
libuuid # tools/mkeficapsule
gnutls # tools/mkeficapsule
openssl # tools/mkimage
] ;
2022-06-13 09:56:10 +00:00
buildUBoot = lib . makeOverridable ( {
2019-11-27 20:21:24 +00:00
version ? null
, src ? null
, filesToInstall
2023-09-16 02:02:37 +00:00
, pythonScriptsToInstall ? { }
2019-11-27 20:21:24 +00:00
, installDir ? " $ o u t "
, defconfig
, extraConfig ? " "
, extraPatches ? [ ]
, extraMakeFlags ? [ ]
, extraMeta ? { }
2023-11-04 08:21:51 +00:00
, crossTools ? false
2019-11-27 20:21:24 +00:00
, . . . } @ args : stdenv . mkDerivation ( {
2019-01-05 21:10:10 +00:00
pname = " u b o o t - ${ defconfig } " ;
2015-11-02 23:53:10 +00:00
2019-11-27 20:21:24 +00:00
version = if src == null then defaultVersion else version ;
src = if src == null then defaultSrc else src ;
2015-11-02 23:53:10 +00:00
2021-01-11 01:41:26 +00:00
patches = [
./0001-configs-rpi-allow-for-bigger-kernels.patch
] ++ extraPatches ;
2016-09-07 23:37:11 +00:00
2017-03-17 20:17:02 +00:00
postPatch = ''
2023-09-16 02:02:37 +00:00
$ { lib . concatMapStrings ( script : ''
substituteInPlace $ { script } \
- - replace " # ! / u s r / b i n / e n v p y t h o n 3 " " # ! ${ pythonScriptsToInstall . ${ script } } / b i n / p y t h o n 3 "
'' ) ( b u i l t i n s . a t t r N a m e s p y t h o n S c r i p t s T o I n s t a l l ) }
2017-03-17 20:17:02 +00:00
patchShebangs tools
2023-11-04 08:23:36 +00:00
patchShebangs scripts
2017-03-17 20:17:02 +00:00
'' ;
2018-12-30 23:44:03 +00:00
nativeBuildInputs = [
2022-09-18 12:49:33 +00:00
ncurses # tools/kwboot
2018-12-30 23:44:03 +00:00
bc
bison
flex
2023-02-27 05:25:28 +00:00
installShellFiles
2021-01-13 03:00:10 +00:00
( buildPackages . python3 . withPackages ( p : [
p . libfdt
p . setuptools # for pkg_resources
2023-04-30 05:14:59 +00:00
p . pyelftools
2021-01-13 03:00:10 +00:00
] ) )
2018-12-30 23:44:03 +00:00
swig
2022-04-26 02:19:21 +00:00
which # for scripts/dtc-version.sh
2024-08-21 17:05:30 +00:00
perl # for oid build (secureboot)
2023-11-04 08:21:51 +00:00
] ++ lib . optionals ( ! crossTools ) toolsDeps ;
2018-02-23 22:50:24 +00:00
depsBuildBuild = [ buildPackages . stdenv . cc ] ;
2023-11-04 08:21:51 +00:00
buildInputs = lib . optionals crossTools toolsDeps ;
2022-08-21 15:26:40 +00:00
2017-11-06 23:56:59 +00:00
hardeningDisable = [ " a l l " ] ;
2022-04-26 05:40:33 +00:00
enableParallelBuilding = true ;
2018-02-23 22:50:24 +00:00
makeFlags = [
2024-01-01 03:17:19 +00:00
" D T C = ${ lib . getExe buildPackages . dtc } "
2018-02-23 22:50:24 +00:00
" C R O S S _ C O M P I L E = ${ stdenv . cc . targetPrefix } "
] ++ extraMakeFlags ;
2017-11-06 23:56:59 +00:00
2019-01-01 06:05:36 +00:00
passAsFile = [ " e x t r a C o n f i g " ] ;
2015-11-02 23:53:10 +00:00
configurePhase = ''
2018-02-23 22:50:24 +00:00
runHook preConfigure
2015-11-02 23:53:10 +00:00
make $ { defconfig }
2018-02-23 22:50:24 +00:00
2019-01-01 06:05:36 +00:00
cat $ extraConfigPath > > . config
2018-02-23 22:50:24 +00:00
runHook postConfigure
2010-03-01 15:21:24 +00:00
'' ;
2010-03-01 23:22:48 +00:00
2015-11-02 23:53:10 +00:00
installPhase = ''
runHook preInstall
2015-06-07 19:12:18 +00:00
2015-11-02 23:53:10 +00:00
mkdir - p $ { installDir }
2023-09-16 02:02:37 +00:00
cp $ { lib . concatStringsSep " " ( filesToInstall ++ builtins . attrNames pythonScriptsToInstall ) } $ { installDir }
2009-11-08 00:32:12 +00:00
2020-07-11 23:37:58 +00:00
mkdir - p " $ o u t / n i x - s u p p o r t "
$ { lib . concatMapStrings ( file : ''
echo " f i l e b i n a r y - d i s t ${ installDir } / ${ builtins . baseNameOf file } " > > " $ o u t / n i x - s u p p o r t / h y d r a - b u i l d - p r o d u c t s "
2023-09-16 02:02:37 +00:00
'' ) ( f i l e s T o I n s t a l l + + b u i l t i n s . a t t r N a m e s p y t h o n S c r i p t s T o I n s t a l l ) }
2020-07-11 23:37:58 +00:00
2015-11-02 23:53:10 +00:00
runHook postInstall
'' ;
2015-06-19 03:13:34 +00:00
2015-11-02 23:53:10 +00:00
dontStrip = true ;
2009-11-08 00:32:12 +00:00
2018-12-30 23:44:03 +00:00
meta = with lib ; {
2023-01-21 21:41:12 +00:00
homepage = " h t t p s : / / w w w . d e n x . d e / w i k i / U - B o o t / " ;
2015-11-02 23:53:10 +00:00
description = " B o o t l o a d e r f o r e m b e d d e d s y s t e m s " ;
2024-05-26 12:42:05 +00:00
license = licenses . gpl2Plus ;
2024-06-21 00:45:18 +00:00
maintainers = with maintainers ; [ bartsch dezgeg lopsided98 ] ;
2015-11-02 23:53:10 +00:00
} // extraMeta ;
2023-09-16 02:02:37 +00:00
} // removeAttrs args [ " e x t r a M e t a " " p y t h o n S c r i p t s T o I n s t a l l " ] ) ) ;
2019-08-13 21:52:01 +00:00
in {
2015-11-02 23:53:10 +00:00
inherit buildUBoot ;
2015-06-07 19:12:18 +00:00
2019-08-13 21:52:01 +00:00
ubootTools = buildUBoot {
2019-11-24 16:37:01 +00:00
defconfig = " t o o l s - o n l y _ d e f c o n f i g " ;
2015-11-02 23:53:10 +00:00
installDir = " $ o u t / b i n " ;
2018-02-23 22:50:24 +00:00
hardeningDisable = [ ] ;
2015-11-02 23:53:10 +00:00
dontStrip = false ;
2018-12-30 23:44:03 +00:00
extraMeta . platforms = lib . platforms . linux ;
2023-11-04 08:21:51 +00:00
crossTools = true ;
extraMakeFlags = [ " H O S T _ T O O L S _ A L L = y " " N O _ S D L = 1 " " c r o s s _ t o o l s " ] ;
2023-02-27 05:25:28 +00:00
outputs = [ " o u t " " m a n " ] ;
postInstall = ''
installManPage doc /* . 1
'' ;
2017-12-23 01:19:13 +00:00
filesToInstall = [
" t o o l s / d u m p i m a g e "
" t o o l s / f d t g r e p "
" t o o l s / k w b o o t "
" t o o l s / m k e n v i m a g e "
" t o o l s / m k i m a g e "
] ;
2023-09-16 02:03:52 +00:00
pythonScriptsToInstall = {
" t o o l s / e f i v a r . p y " = ( python3 . withPackages ( ps : [ ps . pyopenssl ] ) ) ;
} ;
2015-11-02 23:53:10 +00:00
} ;
2019-08-13 21:52:01 +00:00
ubootA20OlinuxinoLime = buildUBoot {
2017-06-10 20:21:17 +00:00
defconfig = " A 2 0 - O L i n u X i n o - L i m e _ d e f c o n f i g " ;
2018-02-23 22:50:24 +00:00
extraMeta . platforms = [ " a r m v 7 l - l i n u x " ] ;
2017-06-10 20:21:17 +00:00
filesToInstall = [ " u - b o o t - s u n x i - w i t h - s p l . b i n " ] ;
} ;
2022-03-03 17:30:05 +00:00
ubootA20OlinuxinoLime2EMMC = buildUBoot {
defconfig = " A 2 0 - O L i n u X i n o - L i m e 2 - e M M C _ d e f c o n f i g " ;
extraMeta . platforms = [ " a r m v 7 l - l i n u x " ] ;
filesToInstall = [ " u - b o o t - s u n x i - w i t h - s p l . b i n " ] ;
} ;
2020-01-21 22:07:33 +00:00
ubootAmx335xEVM = buildUBoot {
defconfig = " a m 3 3 5 x _ e v m _ d e f c o n f i g " ;
extraMeta . platforms = [ " a r m v 7 l - l i n u x " ] ;
filesToInstall = [ " M L O " " u - b o o t . i m g " ] ;
} ;
2019-08-13 21:52:01 +00:00
ubootBananaPi = buildUBoot {
2015-12-25 18:31:43 +00:00
defconfig = " B a n a n a p i _ d e f c o n f i g " ;
2018-02-23 22:50:24 +00:00
extraMeta . platforms = [ " a r m v 7 l - l i n u x " ] ;
2015-12-25 18:31:43 +00:00
filesToInstall = [ " u - b o o t - s u n x i - w i t h - s p l . b i n " ] ;
2016-04-18 16:57:08 +00:00
} ;
2020-01-02 11:13:11 +00:00
ubootBananaPim3 = buildUBoot {
defconfig = " S i n o v o i p _ B P I _ M 3 _ d e f c o n f i g " ;
extraMeta . platforms = [ " a r m v 7 l - l i n u x " ] ;
filesToInstall = [ " u - b o o t - s u n x i - w i t h - s p l . b i n " ] ;
} ;
2019-08-13 21:52:01 +00:00
ubootBananaPim64 = buildUBoot {
2019-04-24 20:50:01 +00:00
defconfig = " b a n a n a p i _ m 6 4 _ d e f c o n f i g " ;
extraMeta . platforms = [ " a a r c h 6 4 - l i n u x " ] ;
BL31 = " ${ armTrustedFirmwareAllwinner } / b l 3 1 . b i n " ;
2023-11-04 08:23:58 +00:00
SCP = " / d e v / n u l l " ;
2019-04-24 20:50:01 +00:00
filesToInstall = [ " u - b o o t - s u n x i - w i t h - s p l . b i n " ] ;
} ;
2017-12-22 23:28:59 +00:00
# http://git.denx.de/?p=u-boot.git;a=blob;f=board/solidrun/clearfog/README;hb=refs/heads/master
2019-08-13 21:52:01 +00:00
ubootClearfog = buildUBoot {
2017-12-22 23:28:59 +00:00
defconfig = " c l e a r f o g _ d e f c o n f i g " ;
2018-02-23 22:50:24 +00:00
extraMeta . platforms = [ " a r m v 7 l - l i n u x " ] ;
2023-11-04 08:24:16 +00:00
filesToInstall = [ " u - b o o t - w i t h - s p l . k w b " ] ;
2017-12-22 23:28:59 +00:00
} ;
2024-10-08 13:10:16 +00:00
ubootCM3588NAS = buildUBoot {
defconfig = " c m 3 5 8 8 - n a s - r k 3 5 8 8 _ d e f c o n f i g " ;
extraMeta . platforms = [ " a a r c h 6 4 - l i n u x " ] ;
BL31 = " ${ armTrustedFirmwareRK3588 } / b l 3 1 . e l f " ;
ROCKCHIP_TPL = rkbin . TPL_RK3588 ;
2024-10-08 15:46:45 +00:00
filesToInstall = [ " u - b o o t . i t b " " i d b l o a d e r . i m g " " u - b o o t - r o c k c h i p . b i n " ] ;
2024-10-08 13:10:16 +00:00
} ;
2021-10-13 16:38:10 +00:00
ubootCubieboard2 = buildUBoot {
defconfig = " C u b i e b o a r d 2 _ d e f c o n f i g " ;
extraMeta . platforms = [ " a r m v 7 l - l i n u x " ] ;
filesToInstall = [ " u - b o o t - s u n x i - w i t h - s p l . b i n " ] ;
} ;
2019-08-13 21:52:01 +00:00
ubootGuruplug = buildUBoot {
2018-02-24 04:47:27 +00:00
defconfig = " g u r u p l u g _ d e f c o n f i g " ;
extraMeta . platforms = [ " a r m v 5 t e l - l i n u x " ] ;
filesToInstall = [ " u - b o o t . b i n " ] ;
} ;
2019-08-13 21:52:01 +00:00
ubootJetsonTK1 = buildUBoot {
2015-11-02 23:53:10 +00:00
defconfig = " j e t s o n - t k 1 _ d e f c o n f i g " ;
2018-02-23 22:50:24 +00:00
extraMeta . platforms = [ " a r m v 7 l - l i n u x " ] ;
2015-11-02 23:53:10 +00:00
filesToInstall = [ " u - b o o t " " u - b o o t . d t b " " u - b o o t - d t b - t e g r a . b i n " " u - b o o t - n o d t b - t e g r a . b i n " ] ;
2018-03-16 17:27:01 +00:00
# tegra-uboot-flasher expects this exact directory layout, sigh...
postInstall = ''
mkdir - p $ out/spl
cp spl/u-boot-spl $ out/spl /
'' ;
2015-11-02 23:53:10 +00:00
} ;
2022-11-12 13:58:02 +00:00
# Flashing instructions:
# dd if=u-boot.gxl.sd.bin of=<sdcard> conv=fsync,notrunc bs=512 skip=1 seek=1
# dd if=u-boot.gxl.sd.bin of=<sdcard> conv=fsync,notrunc bs=1 count=444
ubootLibreTechCC = let
firmwareImagePkg = fetchFromGitHub {
owner = " L i b r e E L E C " ;
repo = " a m l o g i c - b o o t - f i p " ;
rev = " 4 3 6 9 a 1 3 8 c a 2 4 c 5 a b 9 3 2 b 8 c b d 1 a f 4 5 0 4 5 7 0 b 7 0 9 d f " ;
sha256 = " s h a 2 5 6 - m G R U w d h 3 n W 4 g B w W I Y H J G j z k e z H x A B w c w k / 1 g V R i s 7 T c = " ;
meta . license = lib . licenses . unfreeRedistributableFirmware ;
} ;
in
assert stdenv . buildPlatform . system == " x 8 6 _ 6 4 - l i n u x " ; # aml_encrypt_gxl is a x86_64 binary
buildUBoot {
defconfig = " l i b r e t e c h - c c _ d e f c o n f i g " ;
extraMeta . platforms = [ " a a r c h 6 4 - l i n u x " ] ;
filesToInstall = [ " u - b o o t . b i n " ] ;
postBuild = ''
# Copy binary files & tools from LibreELEC/amlogic-boot-fip, and u-boot build to working dir
mkdir $ out tmp
cp $ { firmwareImagePkg } /lepotato / { acs . bin , bl2 . bin , bl21 . bin , bl30 . bin , bl301 . bin , bl31 . img } \
$ { firmwareImagePkg } /lepotato / { acs_tool . py , aml_encrypt_gxl , blx_fix . sh } \
u-boot . bin tmp /
cd tmp
python3 acs_tool . py bl2 . bin bl2_acs . bin acs . bin 0
bash - e blx_fix . sh bl2_acs . bin zero bl2_zero . bin bl21 . bin bl21_zero . bin bl2_new . bin bl2
[ - f zero ] && rm zero
bash - e blx_fix . sh bl30 . bin zero bl30_zero . bin bl301 . bin bl301_zero . bin bl30_new . bin bl30
[ - f zero ] && rm zero
./aml_encrypt_gxl - - bl2sig - - input bl2_new . bin - - output bl2 . n . bin . sig
./aml_encrypt_gxl - - bl3enc - - input bl30_new . bin - - output bl30_new . bin . enc
./aml_encrypt_gxl - - bl3enc - - input bl31 . img - - output bl31 . img . enc
./aml_encrypt_gxl - - bl3enc - - input u-boot . bin - - output bl33 . bin . enc
./aml_encrypt_gxl - - bootmk - - output $ out/u-boot.gxl \
- - bl2 bl2 . n . bin . sig - - bl30 bl30_new . bin . enc - - bl31 bl31 . img . enc - - bl33 bl33 . bin . enc
'' ;
} ;
2021-01-28 18:41:08 +00:00
ubootNanoPCT4 = buildUBoot rec {
2021-01-29 18:42:16 +00:00
rkbin = fetchFromGitHub {
owner = " a r m b i a n " ;
repo = " r k b i n " ;
rev = " 3 b d 0 3 2 1 c a e 5 e f 8 8 1 a 6 0 0 5 f b 4 7 0 0 0 9 a d 5 a 5 d 1 4 6 2 d " ;
sha256 = " 0 9 r 4 d z x s b s 3 p f f 4 s h 7 0 q n y p 3 0 s 3 r c 7 p k c 4 6 v 1 m 3 1 5 2 s 7 j q j a s p 3 1 " ;
2021-01-28 18:41:08 +00:00
} ;
defconfig = " n a n o p c - t 4 - r k 3 3 9 9 _ d e f c o n f i g " ;
extraMeta = {
2021-01-29 19:06:52 +00:00
platforms = [ " a a r c h 6 4 - l i n u x " ] ;
2021-01-28 18:41:08 +00:00
license = lib . licenses . unfreeRedistributableFirmware ;
} ;
2021-02-24 22:49:34 +00:00
BL31 = " ${ armTrustedFirmwareRK3399 } / b l 3 1 . e l f " ;
2021-01-29 19:06:52 +00:00
filesToInstall = [ " u - b o o t . i t b " " i d b l o a d e r . i m g " ] ;
2021-01-28 18:41:08 +00:00
postBuild = ''
2021-01-29 18:42:16 +00:00
./tools/mkimage - n rk3399 - T rksd - d $ { rkbin } /rk33/rk3399_ddr_800MHz_v1.24.bin idbloader . img
cat $ { rkbin } /rk33/rk3399_miniloader_v1.19.bin > > idbloader . img
2021-01-28 18:41:08 +00:00
'' ;
} ;
2024-03-30 02:34:07 +00:00
ubootNanoPCT6 = buildUBoot {
defconfig = " n a n o p c - t 6 - r k 3 5 8 8 _ d e f c o n f i g " ;
extraMeta . platforms = [ " a a r c h 6 4 - l i n u x " ] ;
BL31 = " ${ armTrustedFirmwareRK3588 } / b l 3 1 . e l f " ;
ROCKCHIP_TPL = rkbin . TPL_RK3588 ;
2024-08-12 08:10:25 +00:00
filesToInstall = [ " u - b o o t . i t b " " i d b l o a d e r . i m g " " u - b o o t - r o c k c h i p . b i n " " u - b o o t - r o c k c h i p - s p i . b i n " ] ;
2024-03-30 02:34:07 +00:00
} ;
2019-08-13 21:52:01 +00:00
ubootNovena = buildUBoot {
2018-07-01 18:46:23 +00:00
defconfig = " n o v e n a _ d e f c o n f i g " ;
extraMeta . platforms = [ " a r m v 7 l - l i n u x " ] ;
2020-08-27 11:00:10 +00:00
filesToInstall = [ " u - b o o t - d t b . i m g " " S P L " ] ;
2018-07-01 18:46:23 +00:00
} ;
2019-12-05 21:19:26 +00:00
# Flashing instructions:
# dd if=bl1.bin.hardkernel of=<device> conv=fsync bs=1 count=442
# dd if=bl1.bin.hardkernel of=<device> conv=fsync bs=512 skip=1 seek=1
# dd if=u-boot.gxbb of=<device> conv=fsync bs=512 seek=97
ubootOdroidC2 = let
firmwareBlobs = fetchFromGitHub {
owner = " a r m b i a n " ;
repo = " o d r o i d c 2 - b l o b s " ;
rev = " 4 7 c 5 a a c 4 b c a c 6 f 0 6 7 c e b e 7 6 e 4 1 f b 9 9 2 4 d 4 5 b 4 2 9 c " ;
sha256 = " 1 n s 0 a 1 3 0 y x n x y s i a 8 c 3 q 2 f g y j p 9 k 0 n k r 6 8 9 d x k 8 8 q h 2 v n i b g c h n p " ;
meta . license = lib . licenses . unfreeRedistributableFirmware ;
} ;
in buildUBoot {
defconfig = " o d r o i d - c 2 _ d e f c o n f i g " ;
extraMeta . platforms = [ " a a r c h 6 4 - l i n u x " ] ;
filesToInstall = [ " u - b o o t . b i n " " u - b o o t . g x b b " " ${ firmwareBlobs } / b l 1 . b i n . h a r d k e r n e l " ] ;
postBuild = ''
# BL301 image needs at least 64 bytes of padding after it to place
# signing headers (with amlbootsig)
truncate - s 64 bl301 . padding . bin
cat ' $ { firmwareBlobs } /gxb/bl301.bin ' bl301 . padding . bin > bl301 . padded . bin
# The downstream fip_create tool adds a custom TOC entry with UUID
# AABBCCDD-ABCD-EFEF-ABCD-12345678ABCD for the BL301 image. It turns out
# that the firmware blob does not actually care about UUIDs, only the
# order the images appear in the file. Because fiptool does not know
# about the BL301 UUID, we would have to use the --blob option, which adds
# the image to the end of the file, causing the boot to fail. Instead, we
# take advantage of the fact that UUIDs are ignored and just put the
# images in the right order with the wrong UUIDs. In the command below,
# --tb-fw is really --scp-fw and --scp-fw is the BL301 image.
#
# See https://github.com/afaerber/meson-tools/issues/3 for more
# information.
' $ { buildPackages . armTrustedFirmwareTools } /bin/fiptool ' create \
- - align 0 x4000 \
- - tb-fw ' $ { firmwareBlobs } /gxb/bl30.bin ' \
- - scp-fw bl301 . padded . bin \
- - soc-fw ' $ { armTrustedFirmwareS905 } /bl31.bin ' \
- - nt-fw u-boot . bin \
fip . bin
cat ' $ { firmwareBlobs } /gxb/bl2.package ' fip . bin > boot_new . bin
' $ { buildPackages . meson-tools } /bin/amlbootsig ' boot_new . bin u-boot . img
dd if = u-boot . img of = u-boot . gxbb bs = 512 skip = 96
'' ;
} ;
2019-08-13 21:52:01 +00:00
ubootOdroidXU3 = buildUBoot {
2017-03-20 08:06:20 +00:00
defconfig = " o d r o i d - x u 3 _ d e f c o n f i g " ;
2018-02-23 22:50:24 +00:00
extraMeta . platforms = [ " a r m v 7 l - l i n u x " ] ;
2017-03-21 01:23:02 +00:00
filesToInstall = [ " u - b o o t - d t b . b i n " ] ;
2017-03-20 08:06:20 +00:00
} ;
2022-01-20 12:55:55 +00:00
ubootOlimexA64Olinuxino = buildUBoot {
defconfig = " a 6 4 - o l i n u x i n o - e m m c _ d e f c o n f i g " ;
extraMeta . platforms = [ " a a r c h 6 4 - l i n u x " ] ;
BL31 = " ${ armTrustedFirmwareAllwinner } / b l 3 1 . b i n " ;
2023-11-04 08:23:58 +00:00
SCP = " / d e v / n u l l " ;
2022-01-20 12:55:55 +00:00
filesToInstall = [ " u - b o o t - s u n x i - w i t h - s p l . b i n " ] ;
} ;
2024-02-03 04:02:26 +00:00
ubootOlimexA64Teres1 = buildUBoot {
defconfig = " t e r e s _ i _ d e f c o n f i g " ;
extraMeta . platforms = [ " a a r c h 6 4 - l i n u x " ] ;
BL31 = " ${ armTrustedFirmwareAllwinner } / b l 3 1 . b i n " ;
# Using /dev/null here is upstream-specified way that disables the inclusion of crust-firmware as it's not yet packaged and without which the build will fail -- https://docs.u-boot.org/en/latest/board/allwinner/sunxi.html#building-the-crust-management-processor-firmware
SCP = " / d e v / n u l l " ;
filesToInstall = [ " u - b o o t - s u n x i - w i t h - s p l . b i n " ] ;
} ;
2024-03-20 01:00:25 +00:00
ubootOrangePi5 = buildUBoot {
defconfig = " o r a n g e p i - 5 - r k 3 5 8 8 s _ d e f c o n f i g " ;
extraMeta . platforms = [ " a a r c h 6 4 - l i n u x " ] ;
BL31 = " ${ armTrustedFirmwareRK3588 } / b l 3 1 . e l f " ;
2024-03-22 05:46:57 +00:00
ROCKCHIP_TPL = rkbin . TPL_RK3588 ;
2024-03-22 05:49:10 +00:00
filesToInstall = [ " u - b o o t . i t b " " i d b l o a d e r . i m g " " u - b o o t - r o c k c h i p . b i n " " u - b o o t - r o c k c h i p - s p i . b i n " ] ;
2024-03-20 01:00:25 +00:00
} ;
2024-09-10 07:18:38 +00:00
ubootOrangePi5Plus = buildUBoot {
defconfig = " o r a n g e p i - 5 - p l u s - r k 3 5 8 8 _ d e f c o n f i g " ;
extraMeta . platforms = [ " a a r c h 6 4 - l i n u x " ] ;
BL31 = " ${ armTrustedFirmwareRK3588 } / b l 3 1 . e l f " ;
ROCKCHIP_TPL = rkbin . TPL_RK3588 ;
filesToInstall = [ " u - b o o t . i t b " " i d b l o a d e r . i m g " " u - b o o t - r o c k c h i p . b i n " " u - b o o t - r o c k c h i p - s p i . b i n " ] ;
} ;
2019-08-13 21:52:01 +00:00
ubootOrangePiPc = buildUBoot {
2017-12-11 03:11:15 +00:00
defconfig = " o r a n g e p i _ p c _ d e f c o n f i g " ;
2018-02-23 22:50:24 +00:00
extraMeta . platforms = [ " a r m v 7 l - l i n u x " ] ;
2017-12-11 03:11:15 +00:00
filesToInstall = [ " u - b o o t - s u n x i - w i t h - s p l . b i n " ] ;
} ;
2019-08-13 21:52:01 +00:00
ubootOrangePiZeroPlus2H5 = buildUBoot {
2018-09-22 20:25:22 +00:00
defconfig = " o r a n g e p i _ z e r o _ p l u s 2 _ d e f c o n f i g " ;
extraMeta . platforms = [ " a a r c h 6 4 - l i n u x " ] ;
BL31 = " ${ armTrustedFirmwareAllwinner } / b l 3 1 . b i n " ;
2023-11-04 08:23:58 +00:00
SCP = " / d e v / n u l l " ;
2018-09-22 20:25:22 +00:00
filesToInstall = [ " u - b o o t - s u n x i - w i t h - s p l . b i n " ] ;
} ;
2021-02-18 07:08:23 +00:00
ubootOrangePiZero = buildUBoot {
defconfig = " o r a n g e p i _ z e r o _ d e f c o n f i g " ;
extraMeta . platforms = [ " a r m v 7 l - l i n u x " ] ;
filesToInstall = [ " u - b o o t - s u n x i - w i t h - s p l . b i n " ] ;
} ;
2021-06-04 23:24:06 +00:00
ubootOrangePiZero2 = buildUBoot {
defconfig = " o r a n g e p i _ z e r o 2 _ d e f c o n f i g " ;
extraMeta . platforms = [ " a a r c h 6 4 - l i n u x " ] ;
BL31 = " ${ armTrustedFirmwareAllwinnerH616 } / b l 3 1 . b i n " ;
filesToInstall = [ " u - b o o t - s u n x i - w i t h - s p l . b i n " ] ;
} ;
2024-07-13 14:56:55 +00:00
ubootOrangePiZero3 = buildUBoot {
defconfig = " o r a n g e p i _ z e r o 3 _ d e f c o n f i g " ;
extraMeta . platforms = [ " a a r c h 6 4 - l i n u x " ] ;
# According to https://linux-sunxi.org/H616 the H618 "is a minor update with a larger (1MB) L2 cache" (compared to the H616)
# but "does require extra support in U-Boot, TF-A and sunxi-fel. Support for that has been merged in mainline releases."
# But no extra support seems to be in TF-A.
BL31 = " ${ armTrustedFirmwareAllwinnerH616 } / b l 3 1 . b i n " ;
filesToInstall = [ " u - b o o t - s u n x i - w i t h - s p l . b i n " ] ;
} ;
2023-04-05 20:41:15 +00:00
ubootOrangePi3 = buildUBoot {
defconfig = " o r a n g e p i _ 3 _ d e f c o n f i g " ;
extraMeta . platforms = [ " a a r c h 6 4 - l i n u x " ] ;
BL31 = " ${ armTrustedFirmwareAllwinnerH6 } / b l 3 1 . b i n " ;
2023-11-04 08:23:58 +00:00
SCP = " / d e v / n u l l " ;
2023-04-05 20:41:15 +00:00
filesToInstall = [ " u - b o o t - s u n x i - w i t h - s p l . b i n " ] ;
} ;
2024-10-08 13:10:24 +00:00
ubootOrangePi3B = buildUBoot {
defconfig = " o r a n g e p i - 3 b - r k 3 5 6 6 _ d e f c o n f i g " ;
extraMeta . platforms = [ " a a r c h 6 4 - l i n u x " ] ;
ROCKCHIP_TPL = rkbin . TPL_RK3568 ;
BL31 = rkbin . BL31_RK3568 ;
filesToInstall = [ " u - b o o t . i t b " " i d b l o a d e r . i m g " " u - b o o t - r o c k c h i p . b i n " " u - b o o t - r o c k c h i p - s p i . b i n " ] ;
} ;
2019-08-13 21:52:01 +00:00
ubootPcduino3Nano = buildUBoot {
2015-11-02 23:53:10 +00:00
defconfig = " L i n k s p r i t e _ p c D u i n o 3 _ N a n o _ d e f c o n f i g " ;
2018-02-23 22:50:24 +00:00
extraMeta . platforms = [ " a r m v 7 l - l i n u x " ] ;
2015-11-02 23:53:10 +00:00
filesToInstall = [ " u - b o o t - s u n x i - w i t h - s p l . b i n " ] ;
2018-01-19 20:14:00 +00:00
} ;
2019-08-13 21:52:01 +00:00
ubootPine64 = buildUBoot {
2018-01-19 20:14:00 +00:00
defconfig = " p i n e 6 4 _ p l u s _ d e f c o n f i g " ;
extraMeta . platforms = [ " a a r c h 6 4 - l i n u x " ] ;
BL31 = " ${ armTrustedFirmwareAllwinner } / b l 3 1 . b i n " ;
2023-11-04 08:23:58 +00:00
SCP = " / d e v / n u l l " ;
2018-01-19 20:14:00 +00:00
filesToInstall = [ " u - b o o t - s u n x i - w i t h - s p l . b i n " ] ;
2015-11-02 23:53:10 +00:00
} ;
2015-06-07 19:12:18 +00:00
2019-08-13 21:52:01 +00:00
ubootPine64LTS = buildUBoot {
2019-05-18 01:57:14 +00:00
defconfig = " p i n e 6 4 - l t s _ d e f c o n f i g " ;
extraMeta . platforms = [ " a a r c h 6 4 - l i n u x " ] ;
BL31 = " ${ armTrustedFirmwareAllwinner } / b l 3 1 . b i n " ;
2023-11-04 08:23:58 +00:00
SCP = " / d e v / n u l l " ;
2019-05-18 01:57:14 +00:00
filesToInstall = [ " u - b o o t - s u n x i - w i t h - s p l . b i n " ] ;
} ;
2019-08-13 21:52:01 +00:00
ubootPinebook = buildUBoot {
2019-05-18 01:58:47 +00:00
defconfig = " p i n e b o o k _ d e f c o n f i g " ;
extraMeta . platforms = [ " a a r c h 6 4 - l i n u x " ] ;
BL31 = " ${ armTrustedFirmwareAllwinner } / b l 3 1 . b i n " ;
2023-11-04 08:23:58 +00:00
SCP = " / d e v / n u l l " ;
2019-05-18 01:58:47 +00:00
filesToInstall = [ " u - b o o t - s u n x i - w i t h - s p l . b i n " ] ;
} ;
2020-08-31 17:15:24 +00:00
ubootPinebookPro = buildUBoot {
defconfig = " p i n e b o o k - p r o - r k 3 3 9 9 _ d e f c o n f i g " ;
extraMeta . platforms = [ " a a r c h 6 4 - l i n u x " ] ;
BL31 = " ${ armTrustedFirmwareRK3399 } / b l 3 1 . e l f " ;
filesToInstall = [ " u - b o o t . i t b " " i d b l o a d e r . i m g " ] ;
} ;
2019-08-13 21:52:01 +00:00
ubootQemuAarch64 = buildUBoot {
2018-03-15 07:03:39 +00:00
defconfig = " q e m u _ a r m 6 4 _ d e f c o n f i g " ;
extraMeta . platforms = [ " a a r c h 6 4 - l i n u x " ] ;
filesToInstall = [ " u - b o o t . b i n " ] ;
} ;
2019-08-13 21:52:01 +00:00
ubootQemuArm = buildUBoot {
2017-12-11 22:52:45 +00:00
defconfig = " q e m u _ a r m _ d e f c o n f i g " ;
2018-02-23 22:50:24 +00:00
extraMeta . platforms = [ " a r m v 7 l - l i n u x " ] ;
2017-12-11 22:52:45 +00:00
filesToInstall = [ " u - b o o t . b i n " ] ;
} ;
2021-06-02 19:36:51 +00:00
ubootQemuRiscv64Smode = buildUBoot {
defconfig = " q e m u - r i s c v 6 4 _ s m o d e _ d e f c o n f i g " ;
extraMeta . platforms = [ " r i s c v 6 4 - l i n u x " ] ;
filesToInstall = [ " u - b o o t . b i n " ] ;
} ;
2021-10-16 15:58:04 +00:00
ubootQemuX86 = buildUBoot {
defconfig = " q e m u - x 8 6 _ d e f c o n f i g " ;
extraConfig = ''
CONFIG_USB_UHCI_HCD = y
CONFIG_USB_EHCI_HCD = y
CONFIG_USB_EHCI_GENERIC = y
CONFIG_USB_XHCI_HCD = y
'' ;
extraMeta . platforms = [ " i 6 8 6 - l i n u x " " x 8 6 _ 6 4 - l i n u x " ] ;
filesToInstall = [ " u - b o o t . r o m " ] ;
} ;
2019-08-13 21:52:01 +00:00
ubootRaspberryPi = buildUBoot {
2015-11-02 23:53:10 +00:00
defconfig = " r p i _ d e f c o n f i g " ;
2018-02-23 22:50:24 +00:00
extraMeta . platforms = [ " a r m v 6 l - l i n u x " ] ;
2015-11-02 23:53:10 +00:00
filesToInstall = [ " u - b o o t . b i n " ] ;
2015-06-07 19:12:18 +00:00
} ;
2010-03-01 23:22:48 +00:00
2019-08-13 21:52:01 +00:00
ubootRaspberryPi2 = buildUBoot {
2016-04-23 11:44:19 +00:00
defconfig = " r p i _ 2 _ d e f c o n f i g " ;
2018-02-23 22:50:24 +00:00
extraMeta . platforms = [ " a r m v 7 l - l i n u x " ] ;
2016-04-23 11:44:19 +00:00
filesToInstall = [ " u - b o o t . b i n " ] ;
} ;
2019-08-13 21:52:01 +00:00
ubootRaspberryPi3_32bit = buildUBoot {
2016-04-23 11:44:19 +00:00
defconfig = " r p i _ 3 _ 3 2 b _ d e f c o n f i g " ;
2018-02-23 22:50:24 +00:00
extraMeta . platforms = [ " a r m v 7 l - l i n u x " ] ;
2016-04-23 11:44:19 +00:00
filesToInstall = [ " u - b o o t . b i n " ] ;
} ;
2019-08-13 21:52:01 +00:00
ubootRaspberryPi3_64bit = buildUBoot {
2017-01-20 12:54:05 +00:00
defconfig = " r p i _ 3 _ d e f c o n f i g " ;
2018-02-23 22:50:24 +00:00
extraMeta . platforms = [ " a a r c h 6 4 - l i n u x " ] ;
2017-01-20 12:54:05 +00:00
filesToInstall = [ " u - b o o t . b i n " ] ;
} ;
2020-09-13 02:30:41 +00:00
ubootRaspberryPi4_32bit = buildUBoot {
defconfig = " r p i _ 4 _ 3 2 b _ d e f c o n f i g " ;
extraMeta . platforms = [ " a r m v 7 l - l i n u x " ] ;
filesToInstall = [ " u - b o o t . b i n " ] ;
} ;
ubootRaspberryPi4_64bit = buildUBoot {
defconfig = " r p i _ 4 _ d e f c o n f i g " ;
extraMeta . platforms = [ " a a r c h 6 4 - l i n u x " ] ;
2022-04-26 04:33:22 +00:00
filesToInstall = [ " u - b o o t . b i n " ] ;
} ;
2019-08-13 21:52:01 +00:00
ubootRaspberryPiZero = buildUBoot {
2018-05-05 11:44:04 +00:00
defconfig = " r p i _ 0 _ w _ d e f c o n f i g " ;
extraMeta . platforms = [ " a r m v 6 l - l i n u x " ] ;
filesToInstall = [ " u - b o o t . b i n " ] ;
} ;
2024-03-23 12:36:28 +00:00
ubootRock4CPlus = buildUBoot {
defconfig = " r o c k - 4 c - p l u s - r k 3 3 9 9 _ d e f c o n f i g " ;
extraMeta . platforms = [ " a a r c h 6 4 - l i n u x " ] ;
BL31 = " ${ armTrustedFirmwareRK3399 } / b l 3 1 . e l f " ;
filesToInstall = [ " u - b o o t . i t b " " i d b l o a d e r . i m g " ] ;
} ;
2024-03-20 00:59:38 +00:00
ubootRock5ModelB = buildUBoot {
defconfig = " r o c k 5 b - r k 3 5 8 8 _ d e f c o n f i g " ;
extraMeta . platforms = [ " a a r c h 6 4 - l i n u x " ] ;
BL31 = " ${ armTrustedFirmwareRK3588 } / b l 3 1 . e l f " ;
2024-03-22 05:46:57 +00:00
ROCKCHIP_TPL = rkbin . TPL_RK3588 ;
2024-03-20 00:59:38 +00:00
filesToInstall = [ " u - b o o t . i t b " " i d b l o a d e r . i m g " " u - b o o t - r o c k c h i p . b i n " " u - b o o t - r o c k c h i p - s p i . b i n " ] ;
} ;
2022-09-16 17:12:24 +00:00
ubootRock64 = buildUBoot {
2019-11-29 04:44:30 +00:00
defconfig = " r o c k 6 4 - r k 3 3 2 8 _ d e f c o n f i g " ;
2022-09-16 17:12:24 +00:00
extraMeta . platforms = [ " a a r c h 6 4 - l i n u x " ] ;
2019-11-29 04:44:30 +00:00
BL31 = " ${ armTrustedFirmwareRK3328 } / b l 3 1 . e l f " ;
2022-09-16 17:12:24 +00:00
filesToInstall = [ " u - b o o t . i t b " " i d b l o a d e r . i m g " " u - b o o t - r o c k c h i p . b i n " ] ;
} ;
# A special build with much lower memory frequency (666 vs 1600 MT/s) which
# makes ROCK64 V2 boards stable. This is necessary because the DDR3 routing
# on that revision is marginal and not uncoditionally stable at the specified
# frequency. If your ROCK64 is unstable you can try this u-boot variant to
# see if it works better for you. The only disadvantage is lowered memory
# bandwidth.
ubootRock64v2 = buildUBoot {
prePatch = ''
substituteInPlace arch/arm/dts/rk3328-rock64-u-boot.dtsi \
- - replace rk3328-sdram-lpddr3-1600 . dtsi rk3328-sdram-lpddr3-666 . dtsi
2019-11-29 04:44:30 +00:00
'' ;
2022-09-16 17:12:24 +00:00
defconfig = " r o c k 6 4 - r k 3 3 2 8 _ d e f c o n f i g " ;
extraMeta . platforms = [ " a a r c h 6 4 - l i n u x " ] ;
BL31 = " ${ armTrustedFirmwareRK3328 } / b l 3 1 . e l f " ;
filesToInstall = [ " u - b o o t . i t b " " i d b l o a d e r . i m g " " u - b o o t - r o c k c h i p . b i n " ] ;
2019-11-29 04:44:30 +00:00
} ;
ubootRockPro64 = buildUBoot {
2021-06-04 20:47:53 +00:00
extraPatches = [
# https://patchwork.ozlabs.org/project/uboot/list/?series=237654&archive=both&state=*
( fetchpatch {
url = " h t t p s : / / p a t c h w o r k . o z l a b s . o r g / s e r i e s / 2 3 7 6 5 4 / m b o x / " ;
sha256 = " 0 a i w 9 z k 8 w 4 m s d 3 v 8 n n d h k s p j i f y 0 y q 6 a 5 f 0 z d y 6 m h z s 0 i l q 8 9 6 c 3 " ;
} )
] ;
2019-11-29 04:44:30 +00:00
defconfig = " r o c k p r o 6 4 - r k 3 3 9 9 _ d e f c o n f i g " ;
extraMeta . platforms = [ " a a r c h 6 4 - l i n u x " ] ;
BL31 = " ${ armTrustedFirmwareRK3399 } / b l 3 1 . e l f " ;
filesToInstall = [ " u - b o o t . i t b " " i d b l o a d e r . i m g " ] ;
} ;
2019-10-08 21:45:25 +00:00
ubootROCPCRK3399 = buildUBoot {
defconfig = " r o c - p c - r k 3 3 9 9 _ d e f c o n f i g " ;
extraMeta . platforms = [ " a a r c h 6 4 - l i n u x " ] ;
filesToInstall = [ " s p l / u - b o o t - s p l . b i n " " u - b o o t . i t b " " i d b l o a d e r . i m g " ] ;
BL31 = " ${ armTrustedFirmwareRK3399 } / b l 3 1 . e l f " ;
} ;
2019-08-13 21:52:01 +00:00
ubootSheevaplug = buildUBoot {
2018-02-24 04:47:27 +00:00
defconfig = " s h e e v a p l u g _ d e f c o n f i g " ;
extraMeta . platforms = [ " a r m v 5 t e l - l i n u x " ] ;
2019-12-28 11:15:41 +00:00
filesToInstall = [ " u - b o o t . k w b " ] ;
2018-02-24 04:47:27 +00:00
} ;
2019-08-13 21:52:01 +00:00
ubootSopine = buildUBoot {
2017-12-11 01:56:36 +00:00
defconfig = " s o p i n e _ b a s e b o a r d _ d e f c o n f i g " ;
extraMeta . platforms = [ " a a r c h 6 4 - l i n u x " ] ;
BL31 = " ${ armTrustedFirmwareAllwinner } / b l 3 1 . b i n " ;
2023-11-04 08:23:58 +00:00
SCP = " / d e v / n u l l " ;
2017-12-11 01:56:36 +00:00
filesToInstall = [ " u - b o o t - s u n x i - w i t h - s p l . b i n " ] ;
} ;
2024-04-10 15:45:38 +00:00
ubootTuringRK1 = buildUBoot {
defconfig = " t u r i n g - r k 1 - r k 3 5 8 8 _ d e f c o n f i g " ;
extraMeta . platforms = [ " a a r c h 6 4 - l i n u x " ] ;
BL31 = " ${ armTrustedFirmwareRK3588 } / b l 3 1 . e l f " ;
ROCKCHIP_TPL = rkbin . TPL_RK3588 ;
filesToInstall = [ " u - b o o t . i t b " " i d b l o a d e r . i m g " " u - b o o t - r o c k c h i p . b i n " ] ;
} ;
2019-08-13 21:52:01 +00:00
ubootUtilite = buildUBoot {
2016-06-23 04:16:29 +00:00
defconfig = " c m _ f x 6 _ d e f c o n f i g " ;
2018-02-23 22:50:24 +00:00
extraMeta . platforms = [ " a r m v 7 l - l i n u x " ] ;
2016-06-23 04:16:29 +00:00
filesToInstall = [ " u - b o o t - w i t h - n a n d - s p l . i m x " ] ;
2019-10-27 13:03:25 +00:00
buildFlags = [ " u - b o o t - w i t h - n a n d - s p l . i m x " ] ;
2019-01-01 06:05:36 +00:00
extraConfig = ''
2016-06-23 04:16:29 +00:00
CONFIG_CMD_SETEXPR = y
'' ;
# sata init; load sata 0 $loadaddr u-boot-with-nand-spl.imx
# sf probe; sf update $loadaddr 0 80000
} ;
2019-08-13 21:52:01 +00:00
ubootWandboard = buildUBoot {
2015-12-25 18:55:22 +00:00
defconfig = " w a n d b o a r d _ d e f c o n f i g " ;
2018-02-23 22:50:24 +00:00
extraMeta . platforms = [ " a r m v 7 l - l i n u x " ] ;
2015-12-25 18:55:22 +00:00
filesToInstall = [ " u - b o o t . i m g " " S P L " ] ;
} ;
2020-11-10 11:54:24 +00:00
ubootRockPi4 = buildUBoot {
defconfig = " r o c k - p i - 4 - r k 3 3 9 9 _ d e f c o n f i g " ;
extraMeta . platforms = [ " a a r c h 6 4 - l i n u x " ] ;
BL31 = " ${ armTrustedFirmwareRK3399 } / b l 3 1 . e l f " ;
filesToInstall = [ " u - b o o t . i t b " " i d b l o a d e r . i m g " ] ;
} ;
2009-11-08 00:32:12 +00:00
}