Compare commits
2 Commits
b52133a28b
...
77cd4492b2
Author | SHA1 | Date | |
---|---|---|---|
77cd4492b2 | |||
81f5550bf0 |
@ -52,8 +52,9 @@
|
|||||||
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
module = {pkgs, config, lim, ... }:
|
module = {pkgs, config, lim, lib, ... }:
|
||||||
let
|
let
|
||||||
|
inherit (lib) mkIf;
|
||||||
openwrt = pkgs.openwrt;
|
openwrt = pkgs.openwrt;
|
||||||
firmwareBlobs = pkgs.pkgsBuildBuild.fetchFromGitHub {
|
firmwareBlobs = pkgs.pkgsBuildBuild.fetchFromGitHub {
|
||||||
owner = "kvalo";
|
owner = "kvalo";
|
||||||
@ -119,6 +120,9 @@
|
|||||||
includePaths = [
|
includePaths = [
|
||||||
"${openwrt.src}/target/linux/ath79/dts"
|
"${openwrt.src}/target/linux/ath79/dts"
|
||||||
];
|
];
|
||||||
|
includes = mkIf config.logging.persistent.enable [
|
||||||
|
./pstore-ramoops.dtsi
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
networkInterfaces =
|
networkInterfaces =
|
||||||
|
10
devices/gl-ar750/pstore-ramoops.dtsi
Normal file
10
devices/gl-ar750/pstore-ramoops.dtsi
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
/ {
|
||||||
|
reserved-memory {
|
||||||
|
ramoops@03f00000 {
|
||||||
|
compatible = "ramoops";
|
||||||
|
reg = <0x03f00000 0x10000>;
|
||||||
|
record-size = <0x1000>;
|
||||||
|
pmsg-size = <0x1000>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
@ -104,7 +104,7 @@ in
|
|||||||
system.outputs = rec {
|
system.outputs = rec {
|
||||||
dtb = liminix.builders.dtb {
|
dtb = liminix.builders.dtb {
|
||||||
inherit (config.boot) commandLine;
|
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 ++ [
|
includes = config.hardware.dts.includePaths ++ [
|
||||||
"${o.kernel.headers}/include"
|
"${o.kernel.headers}/include"
|
||||||
];
|
];
|
||||||
|
@ -212,6 +212,9 @@ let
|
|||||||
in {
|
in {
|
||||||
options = {
|
options = {
|
||||||
logging = {
|
logging = {
|
||||||
|
persistent = {
|
||||||
|
enable = mkEnableOption "store logs across reboots";
|
||||||
|
};
|
||||||
shipping = {
|
shipping = {
|
||||||
enable = mkEnableOption "unix socket for log shipping";
|
enable = mkEnableOption "unix socket for log shipping";
|
||||||
socket = mkOption {
|
socket = mkOption {
|
||||||
@ -263,6 +266,11 @@ in {
|
|||||||
)];
|
)];
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
|
kernel.config = mkIf config.logging.persistent.enable {
|
||||||
|
PSTORE = "y";
|
||||||
|
PSTORE_PMSG = "y";
|
||||||
|
PSTORE_RAM = "y";
|
||||||
|
};
|
||||||
filesystem = dir {
|
filesystem = dir {
|
||||||
etc = dir {
|
etc = dir {
|
||||||
s6-rc = dir {
|
s6-rc = dir {
|
||||||
|
@ -3,7 +3,6 @@ let
|
|||||||
liminix = (import ./default.nix {
|
liminix = (import ./default.nix {
|
||||||
device = (import ./devices/qemu);
|
device = (import ./devices/qemu);
|
||||||
liminix-config = ./vanilla-configuration.nix;
|
liminix-config = ./vanilla-configuration.nix;
|
||||||
inherit nixpkgs;
|
|
||||||
});
|
});
|
||||||
here = builtins.toString ./.;
|
here = builtins.toString ./.;
|
||||||
in liminix.buildEnv.overrideAttrs (o: {
|
in liminix.buildEnv.overrideAttrs (o: {
|
||||||
|
Loading…
Reference in New Issue
Block a user