From a1629ded9eb499b55b547cd8caa0ade8233b32f4 Mon Sep 17 00:00:00 2001 From: Richard Maw Date: Thu, 26 Mar 2015 14:07:37 +0000 Subject: Ensure /dev is mounted before installing If we were pivoted into from an initramfs, then /dev is not populated with a devtmpfs, so we have to mount that ourselves. Change-Id: I0e298ae193246e9b0c80e1ea246b89287092ea6c --- baserock-installer | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/baserock-installer b/baserock-installer index e98ef1a..f33d90e 100755 --- a/baserock-installer +++ b/baserock-installer @@ -38,7 +38,7 @@ to_mount = ( ('/proc', 'proc', 'none'), ('/sys', 'sysfs', 'none'), ('/tmp', 'tmpfs', 'none'), - + ('/dev', 'devtmpfs', 'none'), ) class NotDeviceError(Exception): -- cgit v1.2.1