1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-17 04:51:31 +03:00
mobile-nixos/systems/bootimg.nix

46 lines
1.1 KiB
Nix
Raw Normal View History

{
device_config,
initrd
}:
let
2018-06-18 02:57:03 +03:00
pkgs = (import ../overlay);
2018-06-13 04:47:00 +03:00
in
with pkgs;
let
device_name = device_config.name;
device_info = device_config.info;
linux = device_info.kernel;
kernel = "${linux}/Image.gz-dtb";
dt = "${linux}/boot/dt.img";
# TODO : Allow appending / prepending
cmdline = device_info.kernel_cmdline;
in
stdenv.mkDerivation {
name = "nixos-mobile_${device_name}_boot.img";
src = builtins.filterSource (path: type: false) ./.;
unpackPhase = "true";
buildInputs = [
mkbootimg
dtbTool
linux
];
installPhase = ''
mkbootimg \
--kernel ${kernel} \
--dt ${dt} \
--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
'';
}