mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-17 04:51:31 +03:00
46 lines
1.1 KiB
Nix
46 lines
1.1 KiB
Nix
{
|
|
device_config,
|
|
initrd
|
|
}:
|
|
let
|
|
pkgs = (import ../overlay);
|
|
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
|
|
'';
|
|
}
|