diff options
author | Andrew Cady <d@jerkface.net> | 2016-04-19 15:49:50 -0400 |
---|---|---|
committer | Andrew Cady <d@jerkface.net> | 2016-04-19 20:09:43 -0400 |
commit | 68f3ea11b5c373f4fda17158b0359ba3e7df6247 (patch) | |
tree | 3474e1ba174e1b6715e78674fd55d26666e4b85b /initramfs-tools | |
parent | bf139994f43a5ac8ab10fe37611a15629bef723b (diff) |
remove debug output that's now unreadable anyway
Diffstat (limited to 'initramfs-tools')
-rw-r--r-- | initramfs-tools/scripts/samizdat | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/initramfs-tools/scripts/samizdat b/initramfs-tools/scripts/samizdat index 6d4fe58..e8f5198 100644 --- a/initramfs-tools/scripts/samizdat +++ b/initramfs-tools/scripts/samizdat | |||
@@ -2,7 +2,6 @@ klogd -c1 # TODO: This should be even earlier. Can it go on the kernel command | |||
2 | 2 | ||
3 | mountroot() | 3 | mountroot() |
4 | { | 4 | { |
5 | set -x | ||
6 | mkdir /cdrom /btrfs | 5 | mkdir /cdrom /btrfs |
7 | mount -t iso9660 /dev/sr0 /cdrom | 6 | mount -t iso9660 /dev/sr0 /cdrom |
8 | mount -t btrfs -o loop,subvol=ROOT /cdrom/live/filesystem.btrfs /btrfs | 7 | mount -t btrfs -o loop,subvol=ROOT /cdrom/live/filesystem.btrfs /btrfs |
@@ -23,7 +22,6 @@ mountroot() | |||
23 | bootmenu | 22 | bootmenu |
24 | 23 | ||
25 | sleep 1000 | 24 | sleep 1000 |
26 | set +x | ||
27 | } | 25 | } |
28 | 26 | ||
29 | samizdat_install_udev_rules() | 27 | samizdat_install_udev_rules() |
@@ -42,8 +40,7 @@ samizdat_install_udev_rules() | |||
42 | samizdat_restart_udev() | 40 | samizdat_restart_udev() |
43 | { | 41 | { |
44 | mkdir -p /var/log | 42 | mkdir -p /var/log |
45 | ps aux|grep systemd-udevd | 43 | killall systemd-udevd 2>/dev/null |
46 | killall systemd-udevd | ||
47 | /lib/systemd/systemd-udevd --resolve-names=never --debug >/var/log/udevd-systemd.log 2>&1 & | 44 | /lib/systemd/systemd-udevd --resolve-names=never --debug >/var/log/udevd-systemd.log 2>&1 & |
48 | udevadm hwdb --update # rule is not executed by 'udevadm trigger' otherwise. not sure why | 45 | udevadm hwdb --update # rule is not executed by 'udevadm trigger' otherwise. not sure why |
49 | } | 46 | } |