1
0

Compare commits

..

No commits in common. "fb796e61e04b6e75f60e2f00043d3aece5c4692f" and "29c7af5892de13b5b852c988410dc929c221a7a2" have entirely different histories.

3 changed files with 9 additions and 25 deletions

View File

@ -22,20 +22,13 @@ in
outputs = {
initramfs =
let
bb1 = pkgs.busybox.override {
bb = pkgs.busybox.override {
enableStatic = true;
enableMinimal = true;
enableAppletSymlinks = false;
extraConfig = ''
CONFIG_DESKTOP n
CONFIG_ASH n
CONFIG_HUSH y
CONFIG_HUSH_TICK y
CONFIG_HUSH_LOOPS y
CONFIG_HUSH_CASE y
CONFIG_HUSH_ECHO y
CONFIG_HUSH_SET y
CONFIG_ASH y
CONFIG_LS y
CONFIG_LN y
CONFIG_CAT y
CONFIG_MOUNT y
@ -47,23 +40,18 @@ in
CONFIG_CHMOD y
CONFIG_MKDIR y
CONFIG_MKNOD y
CONFIG_SH_IS_ASH y
CONFIG_BASH_IS_NONE y
CONFIG_SH_IS_NONE y
CONFIG_SH_IS_ASH n
CONFIG_FEATURE_SH_STANDALONE y
CONFIG_FEATURE_PREFER_APPLETS y
CONFIG_BUSYBOX_EXEC_PATH "/bin/busybox"
'';
};
bb = bb1.overrideAttrs(o: {
makeFlags = [];
});
slashinit = pkgs.writeScript "init" ''
#!/bin/hush
#!/bin/sh
exec >/dev/console
echo Running in initramfs
mount -t proc none /proc
set -- `cat /proc/cmdline`
set -- $(cat /proc/cmdline)
for i in "$@" ; do
case "''${i}" in
root=*)
@ -74,7 +62,7 @@ in
echo mount -t jffs2 ''${rootdevice} /target/persist
mount -t jffs2 ''${rootdevice} /target/persist
mount -o bind /target/persist/nix /target/nix
hush /target/persist/activate /target
sh /target/persist/activate /target
cd /target
mount -o bind /target /
exec chroot . /bin/init "$@"
@ -92,8 +80,7 @@ in
nod /dev/console 0600 0 0 c 5 1
dir /bin 0755 0 0
file /bin/busybox ${bb}/bin/busybox 0755 0 0
slink /bin/hush /bin/busybox 0755 0 0
slink /bin/chroot /bin/busybox 0755 0 0
slink /bin/sh /bin/busybox 0755 0 0
file /init ${slashinit} 0755 0 0
SPECIALS
'';

View File

@ -69,7 +69,6 @@ in {
(name: val: dir {
".ssh" = dir {
authorized_keys = {
inherit (val) uid gid;
type = "f";
mode = "0400";
file = lib.concatStringsSep

View File

@ -20,14 +20,12 @@ let
, file ? null
, major ? null
, minor ? null
, uid ? 0
, gid ? 0
}:
let
mode' = if mode != null then mode else
(if type == "d" then "0755" else "0644");
pathname = "${prefix}/${filename}";
line = "${pathname} ${type} ${mode'} ${toString uid} ${toString gid}";
line = "${pathname} ${type} ${mode'} 0 0";
in
if type == "f" then
"${line} echo -n \"${qprint file}\" |qprint -d"