boot: disable group/other permission checking in bootfs paqfs
when building bootfs in d770 mode directory, the other permissions in bootfs paq are masked off which results in boot to fail. theres no point in checking group/other permissions on boot, so just disable permissin checking in paqfs with the -a flag.
This commit is contained in:
parent
b821edbcab
commit
e451804a75
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ main(int argc, char *argv[])
|
|||
|
||||
/* setup the boot namespace */
|
||||
bind("/boot", "/bin", MAFTER);
|
||||
run("/bin/paqfs", "-q", "-c", "8", "-m" "/root", "/boot/bootfs.paq", nil);
|
||||
run("/bin/paqfs", "-qa", "-c", "8", "-m" "/root", "/boot/bootfs.paq", nil);
|
||||
bind("/root", "/", MAFTER);
|
||||
snprint(buf, sizeof(buf), "/%s/bin", cputype);
|
||||
bind(buf, "/bin", MAFTER);
|
||||
|
|
Loading…
Reference in a new issue