8496f71e92
With this, boot.loader.generic-extlinux-compatible can be used with linuxPackages_rpi on the Raspberry Pi.
10 lines
223 B
Nix
10 lines
223 B
Nix
{ pkgs }:
|
|
|
|
pkgs.substituteAll {
|
|
src = ./extlinux-conf-builder.sh;
|
|
isExecutable = true;
|
|
path = [pkgs.coreutils pkgs.gnused pkgs.gnugrep];
|
|
inherit (pkgs) bash;
|
|
kernelDTB = pkgs.stdenv.platform.kernelDTB or false;
|
|
}
|