diff --git a/devices/gl-ar750/default.nix b/devices/gl-ar750/default.nix index 73c0e71..7be4c90 100644 --- a/devices/gl-ar750/default.nix +++ b/devices/gl-ar750/default.nix @@ -52,8 +52,9 @@ ''; - module = {pkgs, config, lim, ... }: + module = {pkgs, config, lim, lib, ... }: let + inherit (lib) mkIf; openwrt = pkgs.openwrt; firmwareBlobs = pkgs.pkgsBuildBuild.fetchFromGitHub { owner = "kvalo"; @@ -119,6 +120,9 @@ includePaths = [ "${openwrt.src}/target/linux/ath79/dts" ]; + includes = mkIf config.logging.persistent.enable [ + ./pstore-ramoops.dtsi + ]; }; networkInterfaces = diff --git a/devices/gl-ar750/pstore-ramoops.dtsi b/devices/gl-ar750/pstore-ramoops.dtsi new file mode 100644 index 0000000..bd4f922 --- /dev/null +++ b/devices/gl-ar750/pstore-ramoops.dtsi @@ -0,0 +1,10 @@ +/ { +reserved-memory { + ramoops@03f00000 { + compatible = "ramoops"; + reg = <0x03f00000 0x10000>; + record-size = <0x1000>; + pmsg-size = <0x1000>; + }; + }; +}; diff --git a/modules/outputs.nix b/modules/outputs.nix index 84f6f45..2cf4d8b 100644 --- a/modules/outputs.nix +++ b/modules/outputs.nix @@ -104,7 +104,7 @@ in system.outputs = rec { dtb = liminix.builders.dtb { inherit (config.boot) commandLine; - dts = config.hardware.dts.includes ++ [config.hardware.dts.src]; + dts = [config.hardware.dts.src] ++ config.hardware.dts.includes; includes = config.hardware.dts.includePaths ++ [ "${o.kernel.headers}/include" ]; diff --git a/modules/s6/default.nix b/modules/s6/default.nix index 1a98f41..f23edec 100644 --- a/modules/s6/default.nix +++ b/modules/s6/default.nix @@ -212,6 +212,9 @@ let in { options = { logging = { + persistent = { + enable = mkEnableOption "store logs across reboots"; + }; shipping = { enable = mkEnableOption "unix socket for log shipping"; socket = mkOption { @@ -263,6 +266,11 @@ in { )]; config = { + kernel.config = mkIf config.logging.persistent.enable { + PSTORE = "y"; + PSTORE_PMSG = "y"; + PSTORE_RAM = "y"; + }; filesystem = dir { etc = dir { s6-rc = dir {