There is nothing in this commit except for the changes made by nix-shell -p nixfmt-rfc-style --run "nixfmt ." If this has mucked up your open branches then sorry about that. You can probably nixfmt them to match before merging
56 lines
1.5 KiB
Nix
56 lines
1.5 KiB
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
let
|
|
inherit (lib) mkOption types;
|
|
o = config.system.outputs;
|
|
phram_address = lib.toHexString (config.hardware.ram.startAddress + 256 * 1024 * 1024);
|
|
in
|
|
{
|
|
options.system.outputs = {
|
|
mbrimage = mkOption {
|
|
type = types.package;
|
|
description = ''
|
|
mbrimage
|
|
*********
|
|
|
|
This creates a disk image file with a partition table containing
|
|
the contents of ``outputs.rootfs`` as its only partition.
|
|
'';
|
|
};
|
|
vmdisk = mkOption { type = types.package; };
|
|
};
|
|
|
|
config = {
|
|
system.outputs = {
|
|
mbrimage =
|
|
let
|
|
o = config.system.outputs;
|
|
in
|
|
pkgs.runCommand "mbrimage"
|
|
{
|
|
depsBuildBuild = [ pkgs.pkgsBuildBuild.util-linux ];
|
|
}
|
|
''
|
|
# leave 4 sectors at start for partition table
|
|
# and alignment to 2048 bytes (does that help?)
|
|
dd if=${o.rootfs} of=$out bs=512 seek=4 conv=sync
|
|
echo '4,-,L,*' | sfdisk $out
|
|
'';
|
|
vmdisk = pkgs.runCommand "vmdisk" { } ''
|
|
mkdir $out
|
|
cd $out
|
|
ln -s ${o.mbrimage} ./mbrimage
|
|
cat > run.sh <<EOF
|
|
#!${pkgs.runtimeShell}
|
|
${pkgs.pkgsBuildBuild.run-liminix-vm}/bin/run-liminix-vm --arch ${pkgs.stdenv.hostPlatform.qemuArch} --u-boot ${o.u-boot}/u-boot.bin --phram-address 0x${phram_address} --disk-image ${o.mbrimage} \$* /dev/null /dev/null
|
|
EOF
|
|
chmod +x run.sh
|
|
'';
|
|
};
|
|
};
|
|
}
|