X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=source%2Fsteps%2FMakeInitrd.py;h=808dac15aa6300ef1a565b2db850a9648bd083e6;hb=4f51780e7173b549601c41d96b0a1c7c4255f929;hp=b70271d0e8673971069afbf376e2b08ff6a240aa;hpb=227c5be1c2b98361d42482ca5f130be5ca8f7d26;p=bootmanager.git diff --git a/source/steps/MakeInitrd.py b/source/steps/MakeInitrd.py index b70271d..808dac1 100644 --- a/source/steps/MakeInitrd.py +++ b/source/steps/MakeInitrd.py @@ -52,8 +52,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)