Skip to content

Commit

Permalink
fix(dracut-systemd): don't refuse root=tmpfs when systemd is used
Browse files Browse the repository at this point in the history
A match for systemd PR#18847
  • Loading branch information
poettering authored and johannbg committed Mar 2, 2021
1 parent d8e47e2 commit a96900a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules.d/98dracut-systemd/dracut-cmdline.sh
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ case "${root}${root_unset}" in
/dev/*)
root="block:${root}"
rootok=1 ;;
UNSET|gpt-auto)
# systemd's gpt-auto-generator handles this case.
UNSET|gpt-auto|tmpfs)
# systemd's gpt-auto-generator/fstab-generator handles this case.
rootok=1 ;;
esac

Expand Down

0 comments on commit a96900a

Please sign in to comment.