Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mount: special device LABEL=/boot/efi does not exist #92

Closed
gdha opened this issue Jun 1, 2012 · 0 comments
Closed

mount: special device LABEL=/boot/efi does not exist #92

gdha opened this issue Jun 1, 2012 · 0 comments
Assignees
Labels
bug The code does not do what it is meant to do
Milestone

Comments

@gdha
Copy link
Member

gdha commented Jun 1, 2012

After a successful recovery of RHEL we got an error at start-up:

mount: special device LABEL=/boot/efi does not exist

in (saved) log file I noticed:

+++ echo -e 'Creating vfat-filesystem /boot/efi on /dev/sda1'
+++ mkfs.vfat /dev/sda1
+++ dosfslabel /dev/sda1 options=rw

In the disklayout.sh file the label was saved correctly, but the issue is that we're missing an uuid entry (or a fake one) so that the label was the options entry instead.
To fix this change:

# diff 23_filesystem_layout.sh /tmp/gratien/23_filesystem_layout.sh
51c51
<                 echo -n " uuid= label=$label"

---
>                 echo -n " label=$label"

will test this immediately :-)

@ghost ghost assigned gdha Jun 1, 2012
@gdha gdha closed this as completed in a930aac Jun 1, 2012
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug The code does not do what it is meant to do
Projects
None yet
Development

No branches or pull requests

1 participant