Compare commits
6 Commits
77cd4492b2
...
420552ce98
Author | SHA1 | Date | |
---|---|---|---|
420552ce98 | |||
56c667cfd5 | |||
f9b4f0bc9c | |||
ba5e4704a0 | |||
3357d21d7f | |||
ffaca615ba |
1
ci.nix
1
ci.nix
@ -12,6 +12,7 @@ let
|
|||||||
"qemu-armv7l"
|
"qemu-armv7l"
|
||||||
"tp-archer-ax23"
|
"tp-archer-ax23"
|
||||||
"zyxel-nwa50ax"
|
"zyxel-nwa50ax"
|
||||||
|
"turris-omnia"
|
||||||
];
|
];
|
||||||
vanilla = ./vanilla-configuration.nix;
|
vanilla = ./vanilla-configuration.nix;
|
||||||
for-device = name:
|
for-device = name:
|
||||||
|
@ -3,8 +3,7 @@ reserved-memory {
|
|||||||
ramoops@03f00000 {
|
ramoops@03f00000 {
|
||||||
compatible = "ramoops";
|
compatible = "ramoops";
|
||||||
reg = <0x03f00000 0x10000>;
|
reg = <0x03f00000 0x10000>;
|
||||||
record-size = <0x1000>;
|
pmsg-size = <0x10000>;
|
||||||
pmsg-size = <0x1000>;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -173,6 +173,7 @@
|
|||||||
../../modules/outputs/tftpboot.nix
|
../../modules/outputs/tftpboot.nix
|
||||||
../../modules/outputs/mbrimage.nix
|
../../modules/outputs/mbrimage.nix
|
||||||
../../modules/outputs/extlinux.nix
|
../../modules/outputs/extlinux.nix
|
||||||
|
../../modules/outputs/system-configuration.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
@ -341,7 +342,7 @@
|
|||||||
targets = ["ath9k" "ath10k_pci"];
|
targets = ["ath9k" "ath10k_pci"];
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
defaultOutput = "mtdimage";
|
defaultOutput = "systemConfiguration";
|
||||||
loadAddress = lim.parseInt "0x00800000"; # "0x00008000";
|
loadAddress = lim.parseInt "0x00800000"; # "0x00008000";
|
||||||
entryPoint = lim.parseInt "0x00800000"; # "0x00008000";
|
entryPoint = lim.parseInt "0x00800000"; # "0x00008000";
|
||||||
rootDevice = "/dev/mmcblk0p1";
|
rootDevice = "/dev/mmcblk0p1";
|
||||||
|
@ -131,6 +131,26 @@ human-readable format, use :command:`s6-tai64nlocal`.
|
|||||||
1970-01-02 21:51:48.832588765 wan.link.pppoe sent [LCP ConfReq id=0x1 <asyncmap 0x0> <magic 0x667a9594> <pcomp> <accom
|
1970-01-02 21:51:48.832588765 wan.link.pppoe sent [LCP ConfReq id=0x1 <asyncmap 0x0> <magic 0x667a9594> <pcomp> <accom
|
||||||
p>]
|
p>]
|
||||||
|
|
||||||
|
Log persistence
|
||||||
|
---------------
|
||||||
|
|
||||||
|
Logs written to :file:`/run/log/` will not survive a reboot or crash,
|
||||||
|
as it is an ephemeral filesystem.
|
||||||
|
|
||||||
|
On supported hardware you can enable logging to `pstore
|
||||||
|
<https://www.kernel.org/doc/Documentation/ABI/testing/pstore>` which
|
||||||
|
means the most recent log messages will be preserved on reboot.
|
||||||
|
Set the config option ``logging.persistent.enable = true``, log messages will be written to :file:/dev/pmsg0. After rebooting,
|
||||||
|
|
||||||
|
.. code-block:: console
|
||||||
|
|
||||||
|
# mount -t pstore pstore /sys/fs/pstore/
|
||||||
|
# ls -l /sys/fs/pstore/
|
||||||
|
-r--r--r-- 1 43071 pmsg-ramoops-0
|
||||||
|
# cat /sys/fs/pstore/pmsg-ramoops-0
|
||||||
|
@40000000000000282c997d29 mydevice klogd <6>[ 30.793756] int: port 2(wlan0) entered blocking state
|
||||||
|
[log messages from before the reboot follow]
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Updating an installed system (JFFS2)
|
Updating an installed system (JFFS2)
|
||||||
|
@ -30,7 +30,6 @@
|
|||||||
./outputs/vmroot.nix
|
./outputs/vmroot.nix
|
||||||
./ppp
|
./ppp
|
||||||
./ramdisk.nix
|
./ramdisk.nix
|
||||||
./squashfs.nix
|
|
||||||
./ssh
|
./ssh
|
||||||
./users.nix
|
./users.nix
|
||||||
./vlan
|
./vlan
|
||||||
|
@ -11,7 +11,7 @@ let
|
|||||||
in
|
in
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./squashfs.nix
|
./outputs/squashfs.nix
|
||||||
./outputs/vmroot.nix
|
./outputs/vmroot.nix
|
||||||
./outputs/extlinux.nix
|
./outputs/extlinux.nix
|
||||||
];
|
];
|
||||||
|
@ -9,6 +9,7 @@ let
|
|||||||
inherit (pkgs) runCommand;
|
inherit (pkgs) runCommand;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
imports = [ ./system-configuration.nix ];
|
||||||
options = {
|
options = {
|
||||||
boot.initramfs = {
|
boot.initramfs = {
|
||||||
enable = mkEnableOption "initramfs";
|
enable = mkEnableOption "initramfs";
|
||||||
@ -22,14 +23,6 @@ in
|
|||||||
filesystem
|
filesystem
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
systemConfiguration = mkOption {
|
|
||||||
type = types.package;
|
|
||||||
description = ''
|
|
||||||
pkgs.systemconfig for the configured filesystem,
|
|
||||||
contains 'activate' and 'init' commands
|
|
||||||
'';
|
|
||||||
internal = true;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
config = mkIf config.boot.initramfs.enable {
|
config = mkIf config.boot.initramfs.enable {
|
||||||
@ -53,8 +46,6 @@ in
|
|||||||
file /init ${pkgs.preinit}/bin/preinit 0755 0 0
|
file /init ${pkgs.preinit}/bin/preinit 0755 0 0
|
||||||
SPECIALS
|
SPECIALS
|
||||||
'';
|
'';
|
||||||
systemConfiguration =
|
|
||||||
pkgs.systemconfig config.filesystem.contents;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
28
modules/outputs/system-configuration.nix
Normal file
28
modules/outputs/system-configuration.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{
|
||||||
|
config
|
||||||
|
, pkgs
|
||||||
|
, lib
|
||||||
|
, ...
|
||||||
|
}:
|
||||||
|
let
|
||||||
|
inherit (lib) mkEnableOption mkOption mkIf types;
|
||||||
|
inherit (pkgs) runCommand;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options = {
|
||||||
|
system.outputs = {
|
||||||
|
systemConfiguration = mkOption {
|
||||||
|
type = types.package;
|
||||||
|
description = ''
|
||||||
|
pkgs.systemconfig for the configured filesystem,
|
||||||
|
contains 'activate' and 'init' commands
|
||||||
|
'';
|
||||||
|
internal = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
config = {
|
||||||
|
system.outputs.systemConfiguration =
|
||||||
|
pkgs.systemconfig config.filesystem.contents;
|
||||||
|
};
|
||||||
|
}
|
@ -7,10 +7,27 @@ let
|
|||||||
s6-linux-init
|
s6-linux-init
|
||||||
stdenvNoCC;
|
stdenvNoCC;
|
||||||
inherit (lib.lists) unique concatMap;
|
inherit (lib.lists) unique concatMap;
|
||||||
|
inherit (lib) concatStrings;
|
||||||
|
inherit (builtins) map;
|
||||||
inherit (pkgs.pseudofile) dir symlink;
|
inherit (pkgs.pseudofile) dir symlink;
|
||||||
inherit (pkgs.liminix.services) oneshot bundle longrun;
|
inherit (pkgs.liminix.services) oneshot bundle longrun;
|
||||||
inherit (lib) mkIf mkEnableOption mkOption types;
|
inherit (lib) mkIf mkEnableOption mkOption types;
|
||||||
cfg = config.logging;
|
cfg = config.logging;
|
||||||
|
|
||||||
|
logger =
|
||||||
|
let pipecmds =
|
||||||
|
["${s6}/bin/s6-log -bpd3 -- ${cfg.script} 1"] ++
|
||||||
|
(lib.optional cfg.persistent.enable
|
||||||
|
"/bin/tee /dev/pmsg0") ++
|
||||||
|
(lib.optional cfg.shipping.enable
|
||||||
|
"${pkgs.logshipper}/bin/logtap ${cfg.shipping.socket} logshipper-socket-event");
|
||||||
|
in ''
|
||||||
|
#!${execline}/bin/execlineb -P
|
||||||
|
${execline}/bin/redirfd -w 1 /dev/null
|
||||||
|
${execline}/bin/redirfd -rnb 0 fifo
|
||||||
|
${concatStrings (map (l: "pipeline { ${l} }\n") pipecmds)}
|
||||||
|
${s6}/bin/s6-log -- ${cfg.directory}
|
||||||
|
'';
|
||||||
s6-rc-db =
|
s6-rc-db =
|
||||||
let
|
let
|
||||||
# In the default bundle we need to have all the services
|
# In the default bundle we need to have all the services
|
||||||
@ -106,21 +123,7 @@ let
|
|||||||
mode = "0600";
|
mode = "0600";
|
||||||
};
|
};
|
||||||
notification-fd = { file = "3"; };
|
notification-fd = { file = "3"; };
|
||||||
run = {
|
run = { file = logger; mode = "0755"; };
|
||||||
file = ''
|
|
||||||
#!${execline}/bin/execlineb -P
|
|
||||||
${execline}/bin/redirfd -w 1 /dev/null
|
|
||||||
${execline}/bin/redirfd -rnb 0 fifo
|
|
||||||
${if cfg.shipping.enable then ''
|
|
||||||
pipeline { ${s6}/bin/s6-log -bpd3 -- ${cfg.script} 1 }
|
|
||||||
pipeline { ${pkgs.logshipper}/bin/logtap ${cfg.shipping.socket} logshipper-socket-event }
|
|
||||||
${s6}/bin/s6-log -- ${cfg.directory}
|
|
||||||
'' else ''
|
|
||||||
${s6}/bin/s6-log -bpd3 -- ${cfg.script} ${cfg.directory}
|
|
||||||
''}
|
|
||||||
'';
|
|
||||||
mode = "0755";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
getty = dir {
|
getty = dir {
|
||||||
run = {
|
run = {
|
||||||
|
@ -4,7 +4,7 @@ let
|
|||||||
in {
|
in {
|
||||||
imports = [
|
imports = [
|
||||||
../../vanilla-configuration.nix
|
../../vanilla-configuration.nix
|
||||||
../../modules/squashfs.nix
|
../../modules/outputs/squashfs.nix
|
||||||
../../modules/outputs/jffs2.nix
|
../../modules/outputs/jffs2.nix
|
||||||
];
|
];
|
||||||
config.rootfsType = "jffs2";
|
config.rootfsType = "jffs2";
|
||||||
|
Loading…
Reference in New Issue
Block a user