diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2018-04-26 03:45:15 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2018-04-26 03:45:15 -0500 |
commit | 7082b653bca46ab238bc52ca55cd7651c2201714 (patch) | |
tree | f64988b84ce2cb3d6c34e53b11f1784a57ae67d7 | |
parent | 791d93c4448c8d5ebd82941831ba8bf1d3e9e698 (diff) | |
download | image-7082b653bca46ab238bc52ca55cd7651c2201714.tar.gz image-7082b653bca46ab238bc52ca55cd7651c2201714.tar.bz2 image-7082b653bca46ab238bc52ca55cd7651c2201714.tar.xz image-7082b653bca46ab238bc52ca55cd7651c2201714.zip |
cdinit: give proper perms to the root dir to allow live to log in
-rwxr-xr-x | cdinit-ppc | bin | 74080 -> 74064 bytes | |||
-rw-r--r-- | cdinit.c | 4 |
2 files changed, 2 insertions, 2 deletions
Binary files differ @@ -322,8 +322,8 @@ int main(void) } /* If this fails, we'll find out below */ - mkdir("/upperroot/.overlay_work", S_IRWXU); - mkdir("/upperroot/.root", S_IRWXU); + mkdir("/upperroot/.overlay_work", S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH); + mkdir("/upperroot/.root", S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH); if(mount("overlay", "/newroot", "overlay", 0, "lowerdir=/lowerroot," |