76 |
# Copy updated isolinux files |
# Copy updated isolinux files |
77 |
sudo cp -f /stage/extra/isolinux/$distrel/* $(pwd)/$distarch/isolinux/ |
sudo cp -f /stage/extra/isolinux/$distrel/* $(pwd)/$distarch/isolinux/ |
78 |
|
|
79 |
find $(pwd)/$distarch -\( -not -user 9000 -o -not -group 9000 -\) -print0 | xargs -r0 chown 9000:9000 |
find $(pwd)/$distarch -\( -not -user 9000 -o -not -group 9000 -\) -print0 | sudo xargs -r0 chown 9000:9000 |
80 |
find $(pwd)/$distarch -\( -type f -not -perm -0664 -o -type d -not -perm -0775 -\) -print0 | xargs -r0 chmod u+rwX,g+rwX,o+rX,o-w |
find $(pwd)/$distarch -\( -type f -not -perm -0664 -o -type d -not -perm -0775 -\) -print0 | sudo xargs -r0 chmod u+rwX,g+rwX,o+rX,o-w |
81 |
|
|
82 |
echo "You now need to run /stage/bin/build_ISO as non-root" |
echo "You now need to run /stage/bin/build_ISO as non-root" |
83 |
|
|