2020-04-24 23:36:52 +00:00
{ stdenv
, lib
, bc
, bison
, dtc
2022-09-09 14:08:57 +00:00
, fetchFromGitHub
, fetchpatch
, fetchurl
2020-04-24 23:36:52 +00:00
, flex
2022-09-09 14:08:57 +00:00
, gnutls
2023-10-09 19:29:22 +00:00
, installShellFiles
2022-09-09 14:08:57 +00:00
, libuuid
, meson-tools
, ncurses
2020-04-24 23:36:52 +00:00
, openssl
, swig
2022-04-27 09:35:20 +00:00
, which
2020-04-24 23:36:52 +00:00
, armTrustedFirmwareAllwinner
2023-04-12 12:48:02 +00:00
, armTrustedFirmwareAllwinnerH6
2021-10-06 13:57:05 +00:00
, armTrustedFirmwareAllwinnerH616
2020-04-24 23:36:52 +00:00
, armTrustedFirmwareRK3328
, armTrustedFirmwareRK3399
, armTrustedFirmwareS905
, buildPackages
} :
let
2023-08-04 22:07:22 +00:00
defaultVersion = " 2 0 2 3 . 0 7 . 0 2 " ;
2020-04-24 23:36:52 +00:00
defaultSrc = fetchurl {
2023-08-04 22:07:22 +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 " ;
hash = " s h a 2 5 6 - a 2 p I W B w U q 7 D 5 W 9 h 8 G v T X Q J I k B t e 4 A Q A q n 5 R y f 9 3 g I d U = " ;
2020-04-24 23:36:52 +00:00
} ;
2023-11-16 04:20:00 +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-16 17:23:12 +00:00
buildUBoot = lib . makeOverridable ( {
2020-04-24 23:36:52 +00:00
version ? null
, src ? null
, filesToInstall
, installDir ? " $ o u t "
, defconfig
, extraConfig ? " "
, extraPatches ? [ ]
, extraMakeFlags ? [ ]
, extraMeta ? { }
2023-11-16 04:20:00 +00:00
, crossTools ? false
2020-04-24 23:36:52 +00:00
, . . . } @ args : stdenv . mkDerivation ( {
pname = " u b o o t - ${ defconfig } " ;
version = if src == null then defaultVersion else version ;
src = if src == null then defaultSrc else src ;
2021-01-15 22:18:51 +00:00
patches = [
./0001-configs-rpi-allow-for-bigger-kernels.patch
] ++ extraPatches ;
2020-04-24 23:36:52 +00:00
postPatch = ''
patchShebangs tools
2023-11-16 04:20:00 +00:00
patchShebangs scripts
2020-04-24 23:36:52 +00:00
'' ;
nativeBuildInputs = [
2022-10-06 18:32:54 +00:00
ncurses # tools/kwboot
2020-04-24 23:36:52 +00:00
bc
bison
dtc
flex
2023-10-09 19:29:22 +00:00
installShellFiles
2021-01-15 22:18:51 +00:00
( buildPackages . python3 . withPackages ( p : [
p . libfdt
p . setuptools # for pkg_resources
2023-08-04 22:07:22 +00:00
p . pyelftools
2021-01-15 22:18:51 +00:00
] ) )
2020-04-24 23:36:52 +00:00
swig
2022-04-27 09:35:20 +00:00
which # for scripts/dtc-version.sh
2023-11-16 04:20:00 +00:00
] ++ lib . optionals ( ! crossTools ) toolsDeps ;
2020-04-24 23:36:52 +00:00
depsBuildBuild = [ buildPackages . stdenv . cc ] ;
2023-11-16 04:20:00 +00:00
buildInputs = lib . optionals crossTools toolsDeps ;
2022-09-09 14:08:57 +00:00
2020-04-24 23:36:52 +00:00
hardeningDisable = [ " a l l " ] ;
2022-04-27 09:35:20 +00:00
enableParallelBuilding = true ;
2020-04-24 23:36:52 +00:00
makeFlags = [
" D T C = d t c "
" C R O S S _ C O M P I L E = ${ stdenv . cc . targetPrefix } "
] ++ extraMakeFlags ;
passAsFile = [ " e x t r a C o n f i g " ] ;
configurePhase = ''
runHook preConfigure
make $ { defconfig }
cat $ extraConfigPath > > . config
runHook postConfigure
'' ;
installPhase = ''
runHook preInstall
mkdir - p $ { installDir }
cp $ { lib . concatStringsSep " " filesToInstall } $ { installDir }
2021-06-28 23:13:55 +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 "
'' ) f i l e s T o I n s t a l l }
2020-04-24 23:36:52 +00:00
runHook postInstall
'' ;
dontStrip = true ;
meta = with lib ; {
2023-02-02 18:25:31 +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 / " ;
2020-04-24 23:36:52 +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 " ;
license = licenses . gpl2 ;
2022-03-10 19:12:11 +00:00
maintainers = with maintainers ; [ bartsch dezgeg samueldr lopsided98 ] ;
2020-04-24 23:36:52 +00:00
} // extraMeta ;
2022-06-16 17:23:12 +00:00
} // removeAttrs args [ " e x t r a M e t a " ] ) ) ;
2020-04-24 23:36:52 +00:00
in {
inherit buildUBoot ;
ubootTools = buildUBoot {
defconfig = " t o o l s - o n l y _ d e f c o n f i g " ;
installDir = " $ o u t / b i n " ;
hardeningDisable = [ ] ;
dontStrip = false ;
extraMeta . platforms = lib . platforms . linux ;
2023-11-16 04:20:00 +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-10-09 19:29:22 +00:00
outputs = [ " o u t " " m a n " ] ;
postInstall = ''
installManPage doc /* . 1
'' ;
2020-04-24 23:36:52 +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 "
] ;
} ;
ubootA20OlinuxinoLime = buildUBoot {
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 " ;
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 " ] ;
} ;
2022-03-10 19:12:11 +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-04-24 23:36:52 +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 " ] ;
} ;
ubootBananaPi = buildUBoot {
defconfig = " B a n a n a p i _ 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 " ] ;
} ;
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 " ] ;
} ;
ubootBananaPim64 = buildUBoot {
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-16 04:20:00 +00:00
SCP = " / d e v / n u l l " ;
2020-04-24 23:36:52 +00:00
filesToInstall = [ " u - b o o t - s u n x i - w i t h - s p l . b i n " ] ;
} ;
# http://git.denx.de/?p=u-boot.git;a=blob;f=board/solidrun/clearfog/README;hb=refs/heads/master
ubootClearfog = buildUBoot {
defconfig = " c l e a r f o g _ d e f c o n f i g " ;
extraMeta . platforms = [ " a r m v 7 l - l i n u x " ] ;
2023-11-16 04:20:00 +00:00
filesToInstall = [ " u - b o o t - w i t h - s p l . k w b " ] ;
2020-04-24 23:36:52 +00:00
} ;
2021-10-17 09:34:42 +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 " ] ;
} ;
2020-04-24 23:36:52 +00:00
ubootGuruplug = buildUBoot {
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 " ] ;
} ;
ubootJetsonTK1 = buildUBoot {
defconfig = " j e t s o n - t k 1 _ 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 " " 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 " ] ;
# tegra-uboot-flasher expects this exact directory layout, sigh...
postInstall = ''
mkdir - p $ out/spl
cp spl/u-boot-spl $ out/spl /
'' ;
} ;
2022-12-28 21:21:41 +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-02-24 18:30:23 +00:00
ubootNanoPCT4 = buildUBoot rec {
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 " ;
} ;
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 = {
platforms = [ " a a r c h 6 4 - l i n u x " ] ;
license = lib . licenses . unfreeRedistributableFirmware ;
} ;
2021-04-08 16:26:57 +00:00
BL31 = " ${ armTrustedFirmwareRK3399 } / b l 3 1 . e l f " ;
2021-02-24 18:30:23 +00:00
filesToInstall = [ " u - b o o t . i t b " " i d b l o a d e r . i m g " ] ;
postBuild = ''
./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
'' ;
} ;
2020-04-24 23:36:52 +00:00
ubootNovena = buildUBoot {
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-09-25 04:45:31 +00:00
filesToInstall = [ " u - b o o t - d t b . i m g " " S P L " ] ;
2020-04-24 23:36:52 +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
'' ;
} ;
ubootOdroidXU3 = buildUBoot {
defconfig = " o d r o i d - x u 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 - d t b . b i n " ] ;
} ;
2022-01-23 02:10:13 +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-16 04:20:00 +00:00
SCP = " / d e v / n u l l " ;
2022-01-23 02:10:13 +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-07 01:22:34 +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 " ] ;
} ;
2020-04-24 23:36:52 +00:00
ubootOrangePiPc = buildUBoot {
defconfig = " o r a n g e p i _ p 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 " ] ;
} ;
ubootOrangePiZeroPlus2H5 = buildUBoot {
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-16 04:20:00 +00:00
SCP = " / d e v / n u l l " ;
2020-04-24 23:36:52 +00:00
filesToInstall = [ " u - b o o t - s u n x i - w i t h - s p l . b i n " ] ;
} ;
2021-03-09 03:18:52 +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-10-06 13:57:05 +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 " ] ;
} ;
2023-04-12 12:48:02 +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-16 04:20:00 +00:00
SCP = " / d e v / n u l l " ;
2023-04-12 12:48:02 +00:00
filesToInstall = [ " u - b o o t - s u n x i - w i t h - s p l . b i n " ] ;
} ;
2020-04-24 23:36:52 +00:00
ubootPcduino3Nano = buildUBoot {
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 " ;
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 " ] ;
} ;
ubootPine64 = buildUBoot {
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-16 04:20:00 +00:00
SCP = " / d e v / n u l l " ;
2020-04-24 23:36:52 +00:00
filesToInstall = [ " u - b o o t - s u n x i - w i t h - s p l . b i n " ] ;
} ;
ubootPine64LTS = buildUBoot {
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-16 04:20:00 +00:00
SCP = " / d e v / n u l l " ;
2020-04-24 23:36:52 +00:00
filesToInstall = [ " u - b o o t - s u n x i - w i t h - s p l . b i n " ] ;
} ;
ubootPinebook = buildUBoot {
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-16 04:20:00 +00:00
SCP = " / d e v / n u l l " ;
2020-04-24 23:36:52 +00:00
filesToInstall = [ " u - b o o t - s u n x i - w i t h - s p l . b i n " ] ;
} ;
2020-09-25 04:45:31 +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 " ] ;
} ;
2020-04-24 23:36:52 +00:00
ubootQemuAarch64 = buildUBoot {
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 " ] ;
} ;
ubootQemuArm = buildUBoot {
defconfig = " q e m u _ a r m _ 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 " ] ;
} ;
2021-10-06 13:57:05 +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 " ] ;
} ;
2022-01-13 20:06:32 +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 " ] ;
} ;
2020-04-24 23:36:52 +00:00
ubootRaspberryPi = buildUBoot {
defconfig = " r p i _ 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 " ] ;
} ;
ubootRaspberryPi2 = buildUBoot {
defconfig = " r p i _ 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 . b i n " ] ;
} ;
ubootRaspberryPi3_32bit = buildUBoot {
defconfig = " r p i _ 3 _ 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 " ] ;
} ;
ubootRaspberryPi3_64bit = buildUBoot {
defconfig = " r 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 " ] ;
filesToInstall = [ " u - b o o t . b i n " ] ;
} ;
2021-01-05 17:05:55 +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 " ] ;
filesToInstall = [ " u - b o o t . b i n " ] ;
} ;
2020-04-24 23:36:52 +00:00
ubootRaspberryPiZero = buildUBoot {
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-01-02 11:29:13 +00:00
ubootRock64 = buildUBoot {
2020-04-24 23:36:52 +00:00
defconfig = " r o c k 6 4 - r k 3 3 2 8 _ d e f c o n f i g " ;
2024-01-02 11:29:13 +00:00
extraMeta . platforms = [ " a a r c h 6 4 - l i n u x " ] ;
2020-04-24 23:36:52 +00:00
BL31 = " ${ armTrustedFirmwareRK3328 } / b l 3 1 . e l f " ;
2024-01-02 11:29:13 +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
2020-04-24 23:36:52 +00:00
'' ;
2024-01-02 11:29:13 +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 " ] ;
2020-04-24 23:36:52 +00:00
} ;
ubootRockPro64 = buildUBoot {
2021-07-14 22:03:04 +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 " ;
} )
] ;
2020-04-24 23:36:52 +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 " ] ;
} ;
2020-06-02 18:00:15 +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 " ;
} ;
2020-04-24 23:36:52 +00:00
ubootSheevaplug = buildUBoot {
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 " ] ;
filesToInstall = [ " u - b o o t . k w b " ] ;
} ;
ubootSopine = buildUBoot {
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-16 04:20:00 +00:00
SCP = " / d e v / n u l l " ;
2020-04-24 23:36:52 +00:00
filesToInstall = [ " u - b o o t - s u n x i - w i t h - s p l . b i n " ] ;
} ;
ubootUtilite = buildUBoot {
defconfig = " c m _ f x 6 _ 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 - w i t h - n a n d - s p l . i m x " ] ;
buildFlags = [ " u - b o o t - w i t h - n a n d - s p l . i m x " ] ;
extraConfig = ''
CONFIG_CMD_SETEXPR = y
'' ;
# sata init; load sata 0 $loadaddr u-boot-with-nand-spl.imx
# sf probe; sf update $loadaddr 0 80000
} ;
ubootWandboard = buildUBoot {
defconfig = " w a n d b o a r d _ 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 . i m g " " S P L " ] ;
} ;
2020-11-15 13:44:38 +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 " ] ;
} ;
2020-04-24 23:36:52 +00:00
}