summaryrefslogtreecommitdiffstats
path: root/nixos/modules
diff options
context:
space:
mode:
authorNahum Shalman <nshalman@omniti.com>2016-06-01 13:26:14 +0000
committerNahum Shalman <nshalman@omniti.com>2016-06-01 13:26:14 +0000
commit9b0a5ced139e358a2c362b4f934272db3073826d (patch)
tree4fa5647ede9c3cb89cabe48ab3c315a44adac4bf /nixos/modules
parente2cc56f98c5efd816d1d1854c10d09df6625f4c8 (diff)
stage2: if no /proc, also mount /sys
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/system/boot/stage-2-init.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/nixos/modules/system/boot/stage-2-init.sh b/nixos/modules/system/boot/stage-2-init.sh
index 1b5b22c2005a..4a7f073ea8ad 100644
--- a/nixos/modules/system/boot/stage-2-init.sh
+++ b/nixos/modules/system/boot/stage-2-init.sh
@@ -41,6 +41,8 @@ if [ ! -e /proc/1 ]; then
mount -n -t proc proc /proc
mkdir -m 0755 -p /dev
mount -t devtmpfs devtmpfs /dev
+ mkdir -m 0755 -p /sys
+ mount -t sysfs sysfs /sys
fi