From a2a9b82d4966aecc2d1aeafc2affdb5bc9726ec6 Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Mon, 17 Jan 2011 16:34:55 +0100 Subject: [PATCH] workaround for f14 bootCD --- source/steps/MakeInitrd.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/source/steps/MakeInitrd.py b/source/steps/MakeInitrd.py index 1f08fba..e40f9fd 100644 --- a/source/steps/MakeInitrd.py +++ b/source/steps/MakeInitrd.py @@ -62,8 +62,11 @@ def Run( vars, log ): # mkinitrd needs /dev and /proc to do the right thing. # /proc is already mounted, so bind-mount /dev here - # looks like this dir somehow already exists under f14 - utils.sysexec_noerr("mount -o bind /dev %s/dev" % SYSIMG_PATH) + # xxx tmp - trying to work around the f14 case: + # check that /dev/ is mounted with devtmpfs + if utils.sysexec_noerr ("grep devtmpfs /proc/mounts") != 0: + utils.sysexec("mount -t devtmpfs none /dev") + utils.sysexec("mount -o bind /dev %s/dev" % SYSIMG_PATH) utils.sysexec("mount -t sysfs none %s/sys" % SYSIMG_PATH) initrd, kernel_version= systeminfo.getKernelVersion(vars,log) -- 2.43.0