fstab-generator: fix ordering of /sysroot/usr mount

According to bootup(7) and the behavior when /usr is specified in /etc/fstab, the /sysroot/usr mount should be before initrd-fs.target, not before initrd-root-fs.target.
This commit is contained in:
nmartensen 2016-01-17 10:58:40 +01:00
parent ce3f6d82b0
commit 104bc12fbc
1 changed files with 1 additions and 1 deletions

View File

@ -574,7 +574,7 @@ static int add_sysroot_usr_mount(void) {
false,
false,
false,
SPECIAL_INITRD_ROOT_FS_TARGET,
SPECIAL_INITRD_FS_TARGET,
"/proc/cmdline");
}