mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-16 11:43:21 +03:00
55 lines
1.3 KiB
Nix
55 lines
1.3 KiB
Nix
{
|
|
device_config
|
|
, initrd
|
|
, pkgs
|
|
}:
|
|
let
|
|
inherit (pkgs) buildPackages;
|
|
in
|
|
let
|
|
device_name = device_config.name;
|
|
device_info = device_config.info;
|
|
with_qcdt = device_info ? bootimg_qcdt && device_info.bootimg_qcdt;
|
|
linux = device_info.kernel;
|
|
kernel = ''${linux}/vmlinuz${if with_qcdt then "-dtb" else ""}'';
|
|
dt = "${linux}/boot/dt.img";
|
|
|
|
# TODO : Allow appending / prepending
|
|
cmdline = device_info.kernel_cmdline;
|
|
in
|
|
pkgs.stdenv.mkDerivation {
|
|
name = "nixos-mobile_${device_name}_boot.img";
|
|
|
|
src = builtins.filterSource (path: type: false) ./.;
|
|
unpackPhase = "true";
|
|
|
|
nativeBuildInputs = [
|
|
buildPackages.mkbootimg
|
|
buildPackages.dtbTool
|
|
];
|
|
|
|
buildInputs = [
|
|
linux
|
|
];
|
|
|
|
installPhase = ''
|
|
mkbootimg \
|
|
--kernel ${kernel} \
|
|
${
|
|
if with_qcdt then
|
|
"--dt ${dt}"
|
|
else
|
|
""
|
|
} \
|
|
--ramdisk ${initrd} \
|
|
--cmdline "${cmdline}" \
|
|
--base ${device_info.flash_offset_base } \
|
|
--kernel_offset ${device_info.flash_offset_kernel } \
|
|
--second_offset ${device_info.flash_offset_second } \
|
|
--ramdisk_offset ${device_info.flash_offset_ramdisk} \
|
|
--tags_offset ${device_info.flash_offset_tags } \
|
|
--pagesize ${device_info.flash_pagesize } \
|
|
-o $out
|
|
'';
|
|
}
|