aboutsummaryrefslogtreecommitdiff
path: root/infra/corenix/pkgs/coreboot-payload-seabios/default.nix
blob: 72a104e1b0462814ad73cbd904ea1384310a5a71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ seabios, coreboot, stdenv, fetchurl, seabiosConfig ? {
  CONFIG_COREBOOT = "y";
  CONFIG_VGA_COREBOOT = "y";
  CONFIG_BUILD_VGABIOS = "y";
} }:

seabios.overrideAttrs (oA: rec {
  pname = "coreboot-payload-seabios";

  configurePhase = ''
    runHook preConfigure
    cp ${coreboot.writeConfig seabiosConfig} .config
    make olddefconfig
    runHook postConfigure
  '';
  installPhase = ''
    install -D out/bios.bin.elf -t $out
    [ -f out/vgabios.bin ] && install -D out/vgabios.bin -t $out
  '';
})