2024-06-30 15:58:29 +00:00
|
|
|
{
|
|
|
|
stdenv,
|
|
|
|
buildPackages,
|
|
|
|
writeText,
|
|
|
|
lib,
|
2022-09-20 17:54:27 +00:00
|
|
|
|
2024-06-30 15:58:29 +00:00
|
|
|
config,
|
|
|
|
src,
|
|
|
|
version ? "0",
|
|
|
|
extraPatchPhase ? "echo",
|
|
|
|
targets ? [ "vmlinux" ],
|
|
|
|
}:
|
2023-06-26 19:49:43 +00:00
|
|
|
let
|
|
|
|
writeConfig = import ./write-kconfig.nix { inherit lib writeText; };
|
|
|
|
kconfigFile = writeConfig "kconfig" config;
|
2023-10-12 17:59:45 +00:00
|
|
|
arch = stdenv.hostPlatform.linuxArch;
|
2024-06-30 15:58:29 +00:00
|
|
|
targetNames = map baseNameOf targets;
|
|
|
|
inherit lib;
|
|
|
|
in
|
2022-09-20 17:54:27 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2022-10-19 16:34:22 +00:00
|
|
|
name = "kernel";
|
|
|
|
inherit src extraPatchPhase;
|
2024-06-30 15:58:29 +00:00
|
|
|
hardeningDisable = [ "all" ];
|
|
|
|
nativeBuildInputs =
|
|
|
|
[ buildPackages.stdenv.cc ]
|
|
|
|
++ (with buildPackages.pkgs; [
|
|
|
|
rsync
|
|
|
|
bc
|
|
|
|
bison
|
|
|
|
flex
|
|
|
|
pkg-config
|
|
|
|
openssl
|
|
|
|
ncurses.all
|
|
|
|
perl
|
|
|
|
]);
|
2022-09-20 17:54:27 +00:00
|
|
|
CC = "${stdenv.cc.bintools.targetPrefix}gcc";
|
2025-02-10 21:55:08 +00:00
|
|
|
HOSTCC = with buildPackages.pkgs; "gcc -I${openssl}/include -I${ncurses}/include";
|
|
|
|
HOST_EXTRACFLAGS =
|
|
|
|
with buildPackages.pkgs;
|
2022-09-25 21:07:29 +00:00
|
|
|
"-I${openssl.dev}/include -L${openssl.out}/lib -L${ncurses.out}/lib";
|
2022-09-20 17:54:27 +00:00
|
|
|
PKG_CONFIG_PATH = "./pkgconfig";
|
|
|
|
CROSS_COMPILE = stdenv.cc.bintools.targetPrefix;
|
2023-09-20 16:57:17 +00:00
|
|
|
ARCH = arch;
|
2022-10-19 16:34:22 +00:00
|
|
|
KBUILD_BUILD_HOST = "liminix.builder";
|
|
|
|
|
2022-09-20 17:54:27 +00:00
|
|
|
dontStrip = true;
|
|
|
|
dontPatchELF = true;
|
2025-02-10 21:55:08 +00:00
|
|
|
outputs = [
|
|
|
|
"out"
|
|
|
|
"headers"
|
|
|
|
"modulesupport"
|
|
|
|
"config"
|
|
|
|
] ++ targetNames;
|
2022-09-25 21:07:29 +00:00
|
|
|
phases = [
|
2022-10-19 16:34:22 +00:00
|
|
|
"unpackPhase"
|
2022-09-25 21:07:29 +00:00
|
|
|
"butcherPkgconfig"
|
2022-10-19 16:34:22 +00:00
|
|
|
"extraPatchPhase"
|
2023-03-23 21:50:44 +00:00
|
|
|
"patchPhase"
|
2022-10-19 16:34:22 +00:00
|
|
|
"patchScripts"
|
2022-09-25 21:07:29 +00:00
|
|
|
"configurePhase"
|
|
|
|
"checkConfigurationPhase"
|
|
|
|
"buildPhase"
|
|
|
|
"installPhase"
|
|
|
|
];
|
2022-09-20 17:54:27 +00:00
|
|
|
|
2023-03-23 21:50:44 +00:00
|
|
|
patches = [
|
|
|
|
./cmdline-cookie.patch
|
2023-12-21 19:17:14 +00:00
|
|
|
./mips-malta-fdt-from-bootloader.patch
|
2025-02-10 21:55:08 +00:00
|
|
|
] ++ lib.optional (lib.versionOlder version "5.18.0") ./phram-allow-cached-mappings.patch;
|
2023-03-23 21:50:44 +00:00
|
|
|
|
2022-09-25 21:07:29 +00:00
|
|
|
# this is here to work around what I think is a bug in nixpkgs
|
|
|
|
# packaging of ncurses: it installs pkg-config data files which
|
|
|
|
# don't produce any -L options when queried with "pkg-config --lib
|
|
|
|
# ncurses". For a regular build you'll never even notice, this only
|
|
|
|
# becomes an issue if you do a nix-shell in this derivation and
|
|
|
|
# expect "make nconfig" to work.
|
2022-09-20 17:54:27 +00:00
|
|
|
butcherPkgconfig = ''
|
|
|
|
cp -r ${buildPackages.pkgs.ncurses.dev}/lib/pkgconfig .
|
|
|
|
chmod +w pkgconfig pkgconfig/*.pc
|
|
|
|
for i in pkgconfig/*.pc; do test -f $i && sed -i 's/^Libs:/Libs: -L''${libdir} /' $i;done
|
|
|
|
'';
|
|
|
|
|
2022-10-19 16:34:22 +00:00
|
|
|
patchScripts = ''
|
2023-03-19 09:49:32 +00:00
|
|
|
# Make kexec pass dtb in register when invoking new kernel. The
|
|
|
|
# code to do this is already present, but bracketed by UHI_BOOT
|
|
|
|
# which we can't enable.
|
|
|
|
sed -i arch/mips/kernel/machine_kexec.c -e 's/CONFIG_UHI_BOOT/CONFIG_MIPS/g'
|
|
|
|
|
2022-10-19 16:34:22 +00:00
|
|
|
patchShebangs scripts/
|
|
|
|
'';
|
|
|
|
|
2022-09-20 17:54:27 +00:00
|
|
|
configurePhase = ''
|
|
|
|
export KBUILD_OUTPUT=`pwd`
|
|
|
|
cp ${kconfigFile} .config
|
|
|
|
cp ${kconfigFile} .config.orig
|
2022-10-19 16:34:22 +00:00
|
|
|
make V=1 olddefconfig
|
2022-09-20 17:54:27 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
checkConfigurationPhase = ''
|
|
|
|
echo Checking required config items:
|
2022-10-19 21:09:38 +00:00
|
|
|
if comm -2 -3 <(grep 'CONFIG' ${kconfigFile} |sort) <(grep 'CONFIG' .config|sort) |grep '.' ; then
|
2022-09-20 17:54:27 +00:00
|
|
|
echo -e "^^^ Some configuration lost :-(\nPerhaps you have mutually incompatible settings, or have disabled options on which these depend.\n"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
echo "OK"
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildPhase = ''
|
2024-01-02 19:40:57 +00:00
|
|
|
make ${lib.concatStringsSep " " targetNames} modules_prepare -j$NIX_BUILD_CORES
|
2022-09-20 17:54:27 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
${CROSS_COMPILE}strip -d vmlinux
|
2024-01-02 19:40:57 +00:00
|
|
|
${lib.concatStringsSep "\n" (map (f: "cp ${f} \$${baseNameOf f}") targets)}
|
|
|
|
cp vmlinux $out
|
2022-10-19 16:34:22 +00:00
|
|
|
mkdir -p $headers
|
|
|
|
cp -a include .config $headers/
|
2023-06-27 20:17:04 +00:00
|
|
|
mkdir -p $modulesupport
|
2024-02-11 23:47:11 +00:00
|
|
|
make modules
|
2023-02-22 18:33:17 +00:00
|
|
|
cp -a . $modulesupport
|
2025-01-01 11:54:46 +00:00
|
|
|
cp .config $config
|
2022-09-20 17:54:27 +00:00
|
|
|
'';
|
|
|
|
}
|