WIP-but-works: mainline kernel for Turris Omnia
This commit is contained in:
parent
e6705c4d06
commit
bbce605a14
@ -182,12 +182,10 @@
|
|||||||
kernel = {
|
kernel = {
|
||||||
src = pkgs.pkgsBuildBuild.fetchurl {
|
src = pkgs.pkgsBuildBuild.fetchurl {
|
||||||
name = "linux.tar.gz";
|
name = "linux.tar.gz";
|
||||||
url = "https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.15.137.tar.gz";
|
url = "https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.7.4.tar.gz";
|
||||||
hash = "sha256-PkdzUKZ0IpBiWe/RS70J76JKnBFzRblWcKlaIFNxnHQ=";
|
hash = "sha256-wIrmL0BS63nRwWfm4nw+dRNVPUzGh9M4X7LaHzAn5tU=";
|
||||||
};
|
};
|
||||||
extraPatchPhase = ''
|
version = "6.7.4";
|
||||||
${pkgs.openwrt.applyPatches.mvebu}
|
|
||||||
'';
|
|
||||||
config = {
|
config = {
|
||||||
PCI = "y";
|
PCI = "y";
|
||||||
OF = "y";
|
OF = "y";
|
||||||
@ -203,6 +201,10 @@
|
|||||||
RTC_CLASS = "y";
|
RTC_CLASS = "y";
|
||||||
RTC_DRV_ARMADA38X = "y"; # this may be useful anyway?
|
RTC_DRV_ARMADA38X = "y"; # this may be useful anyway?
|
||||||
|
|
||||||
|
EXPERT = "y";
|
||||||
|
ALLOW_DEV_COREDUMP = "n";
|
||||||
|
|
||||||
|
|
||||||
# dts has a compatible for this but dmesg is not
|
# dts has a compatible for this but dmesg is not
|
||||||
# showing it
|
# showing it
|
||||||
EEPROM_AT24 = "y"; # atmel,24c64
|
EEPROM_AT24 = "y"; # atmel,24c64
|
||||||
@ -213,9 +215,9 @@
|
|||||||
|
|
||||||
MACH_ARMADA_38X = "y";
|
MACH_ARMADA_38X = "y";
|
||||||
SMP = "y";
|
SMP = "y";
|
||||||
# this is disabled for the moment because it relies on a GCC
|
# this is disabled for the moment because it relies on a
|
||||||
# plugin that requires gmp.h to build, and I can't see right now
|
# GCC plugin that requires gmp.h to build, and I can't see
|
||||||
# how to confgure it to find gmp
|
# right now how to confgure it to find gmp
|
||||||
STACKPROTECTOR_PER_TASK = "n";
|
STACKPROTECTOR_PER_TASK = "n";
|
||||||
NR_CPUS = "4";
|
NR_CPUS = "4";
|
||||||
VFP = "y";
|
VFP = "y";
|
||||||
@ -227,7 +229,7 @@
|
|||||||
PSTORE = "y";
|
PSTORE = "y";
|
||||||
PSTORE_RAM = "y";
|
PSTORE_RAM = "y";
|
||||||
PSTORE_CONSOLE = "y";
|
PSTORE_CONSOLE = "y";
|
||||||
PSTORE_DEFLATE_COMPRESS = "n";
|
# PSTORE_DEFLATE_COMPRESS = "n";
|
||||||
|
|
||||||
BLOCK = "y";
|
BLOCK = "y";
|
||||||
MMC="y";
|
MMC="y";
|
||||||
@ -286,9 +288,25 @@
|
|||||||
USB_XHCI_MVEBU = "y";
|
USB_XHCI_MVEBU = "y";
|
||||||
USB_XHCI_HCD = "y";
|
USB_XHCI_HCD = "y";
|
||||||
};
|
};
|
||||||
|
WLAN = {
|
||||||
|
CFG80211 = "m";
|
||||||
|
MAC80211 = "m";
|
||||||
|
|
||||||
|
CFG80211_CERTIFICATION_ONUS = "y";
|
||||||
|
CFG80211_REQUIRE_SIGNED_REGDB = "n"; # depends on ONUS
|
||||||
|
|
||||||
|
CFG80211_CRDA_SUPPORT = "n";
|
||||||
|
|
||||||
|
WLAN_VENDOR_ATH = "y";
|
||||||
|
ATH_COMMON = "m";
|
||||||
|
ATH9K = "m";
|
||||||
|
ATH9K_PCI = "y";
|
||||||
|
ATH10K = "m";
|
||||||
|
ATH10K_PCI = "m";
|
||||||
|
ATH10K_DEBUG = "y";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
boot = {
|
boot = {
|
||||||
commandLine = [
|
commandLine = [
|
||||||
"console=ttyS0,115200"
|
"console=ttyS0,115200"
|
||||||
@ -328,10 +346,41 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
hardware = let
|
hardware = let
|
||||||
mac80211 = pkgs.mac80211.override {
|
mac80211 =
|
||||||
drivers = ["ath9k_pci" "ath10k_pci"];
|
let
|
||||||
klibBuild = config.system.outputs.kernel.modulesupport;
|
targets = [
|
||||||
};
|
"ath9k"
|
||||||
|
"ath10k_pci"
|
||||||
|
];
|
||||||
|
kmodules = pkgs.runCommand "modules" {
|
||||||
|
nativeBuildInputs = with pkgs.pkgsBuildBuild ;[
|
||||||
|
kmod cpio gawk
|
||||||
|
];
|
||||||
|
} ''
|
||||||
|
kernel=${config.system.outputs.kernel.modulesupport}
|
||||||
|
mkdir -p lib/modules/0.0
|
||||||
|
(cd $kernel && find . -name \*.ko | cpio --verbose --make-directories -p $NIX_BUILD_TOP/lib/modules/0.0)
|
||||||
|
cp $kernel/modules.* lib/modules/0.0
|
||||||
|
depmod -b . 0.0
|
||||||
|
|
||||||
|
(for i in ${lib.concatStringsSep " " targets}; do
|
||||||
|
modprobe -S 0.0 -d $NIX_BUILD_TOP --show-depends $i | sed "s,^insmod $NIX_BUILD_TOP/lib/modules/0.0/,,g"
|
||||||
|
done) | awk '!a[$0]++' > load-order
|
||||||
|
|
||||||
|
mkdir $out
|
||||||
|
for i in $(cat load-order); do
|
||||||
|
install -v $NIX_BUILD_TOP/lib/modules/0.0/$i -D $out/$i
|
||||||
|
done
|
||||||
|
echo "O=$out" > $out/load.sh
|
||||||
|
sed "s,^,insmod \$O/,g" < load-order >> $out/load.sh
|
||||||
|
echo "O=$out" > $out/unload.sh
|
||||||
|
tac load-order | sed "s,^,rmmod \$O/,g" > $out/unload.sh
|
||||||
|
''; in
|
||||||
|
oneshot {
|
||||||
|
name = "mac80211-modules";
|
||||||
|
up = "sh ${kmodules}/load.sh";
|
||||||
|
down = "sh ${kmodules}/unload.sh";
|
||||||
|
};
|
||||||
in {
|
in {
|
||||||
defaultOutput = "mtdimage";
|
defaultOutput = "mtdimage";
|
||||||
loadAddress = lim.parseInt "0x00800000"; # "0x00008000";
|
loadAddress = lim.parseInt "0x00800000"; # "0x00008000";
|
||||||
@ -339,9 +388,9 @@
|
|||||||
rootDevice = "/dev/mmcblk0p1";
|
rootDevice = "/dev/mmcblk0p1";
|
||||||
|
|
||||||
dts = {
|
dts = {
|
||||||
src = "${config.system.outputs.kernel.modulesupport}/arch/arm/boot/dts/armada-385-turris-omnia.dts";
|
src = "${config.system.outputs.kernel.modulesupport}/arch/arm/boot/dts/marvell/armada-385-turris-omnia.dts";
|
||||||
includes = [
|
includes = [
|
||||||
"${config.system.outputs.kernel.modulesupport}/arch/arm/boot/dts/"
|
"${config.system.outputs.kernel.modulesupport}/arch/arm/boot/dts/marvell/"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
flash.eraseBlockSize = 65536; # only used for tftpboot
|
flash.eraseBlockSize = 65536; # only used for tftpboot
|
||||||
|
@ -26,6 +26,7 @@ let
|
|||||||
wmm_enabled = 1;
|
wmm_enabled = 1;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
in rec {
|
in rec {
|
||||||
boot = {
|
boot = {
|
||||||
tftp = {
|
tftp = {
|
||||||
@ -87,7 +88,8 @@ in rec {
|
|||||||
services.bridge = svc.bridge.members.build {
|
services.bridge = svc.bridge.members.build {
|
||||||
primary = services.int;
|
primary = services.int;
|
||||||
members = with config.hardware.networkInterfaces;
|
members = with config.hardware.networkInterfaces;
|
||||||
[ wlan
|
[
|
||||||
|
wlan
|
||||||
wlan5
|
wlan5
|
||||||
lan0
|
lan0
|
||||||
lan1
|
lan1
|
||||||
|
@ -27,6 +27,7 @@ in {
|
|||||||
options = {
|
options = {
|
||||||
kernel = {
|
kernel = {
|
||||||
src = mkOption { type = types.path; } ;
|
src = mkOption { type = types.path; } ;
|
||||||
|
version = mkOption { type = types.str; default = "5.15.137";} ;
|
||||||
modular = mkOption {
|
modular = mkOption {
|
||||||
type = types.bool;
|
type = types.bool;
|
||||||
default = true;
|
default = true;
|
||||||
@ -79,7 +80,8 @@ in {
|
|||||||
config.kernel.conditionalConfig;
|
config.kernel.conditionalConfig;
|
||||||
k = liminix.builders.kernel.override {
|
k = liminix.builders.kernel.override {
|
||||||
config = mergedConfig;
|
config = mergedConfig;
|
||||||
inherit (config.kernel) src extraPatchPhase;
|
version = builtins.trace config.kernel.version config.kernel.version;
|
||||||
|
inherit (config.kernel) src extraPatchPhase;
|
||||||
targets = config.kernel.makeTargets;
|
targets = config.kernel.makeTargets;
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
|
@ -46,6 +46,10 @@ in {
|
|||||||
CRYPTO_SHA1 = "y";
|
CRYPTO_SHA1 = "y";
|
||||||
ENCRYPTED_KEYS = "y";
|
ENCRYPTED_KEYS = "y";
|
||||||
KEYS = "y";
|
KEYS = "y";
|
||||||
|
|
||||||
|
# see note in include/linux/netdevice.h re LL_MAX_HEADER
|
||||||
|
WLAN = "y";
|
||||||
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
|
|
||||||
, config
|
, config
|
||||||
, src
|
, src
|
||||||
|
, version ? "1"
|
||||||
, extraPatchPhase ? "echo"
|
, extraPatchPhase ? "echo"
|
||||||
, targets ? ["vmlinux"]
|
, targets ? ["vmlinux"]
|
||||||
} :
|
} :
|
||||||
@ -23,6 +24,7 @@ stdenv.mkDerivation rec {
|
|||||||
(with buildPackages.pkgs; [
|
(with buildPackages.pkgs; [
|
||||||
rsync bc bison flex pkg-config
|
rsync bc bison flex pkg-config
|
||||||
openssl ncurses.all perl
|
openssl ncurses.all perl
|
||||||
|
cpio
|
||||||
]);
|
]);
|
||||||
CC = "${stdenv.cc.bintools.targetPrefix}gcc";
|
CC = "${stdenv.cc.bintools.targetPrefix}gcc";
|
||||||
HOSTCC = with buildPackages.pkgs;
|
HOSTCC = with buildPackages.pkgs;
|
||||||
@ -51,9 +53,9 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
./cmdline-cookie.patch
|
./cmdline-cookie.patch
|
||||||
./phram-allow-cached-mappings.patch
|
|
||||||
./mips-malta-fdt-from-bootloader.patch
|
./mips-malta-fdt-from-bootloader.patch
|
||||||
];
|
] ++ lib.optional (lib.versionOlder version "6.0")
|
||||||
|
./phram-allow-cached-mappings.patch;
|
||||||
|
|
||||||
# this is here to work around what I think is a bug in nixpkgs
|
# this is here to work around what I think is a bug in nixpkgs
|
||||||
# packaging of ncurses: it installs pkg-config data files which
|
# packaging of ncurses: it installs pkg-config data files which
|
||||||
@ -103,8 +105,8 @@ stdenv.mkDerivation rec {
|
|||||||
mkdir -p $headers
|
mkdir -p $headers
|
||||||
cp -a include .config $headers/
|
cp -a include .config $headers/
|
||||||
mkdir -p $modulesupport
|
mkdir -p $modulesupport
|
||||||
cp modules.* $modulesupport
|
cp modules.* vmlinux.o $modulesupport
|
||||||
make clean modules_prepare
|
make modules
|
||||||
cp -a . $modulesupport
|
cp -a . $modulesupport
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user