14 |
exit 1 |
exit 1 |
15 |
fi |
fi |
16 |
|
|
17 |
|
rm -rf $(pwd)/$distarch/{images,isolinux} $(pwd)/$distarch/SME/base/{hdlist*,*.img} |
18 |
|
|
19 |
if [ "$distrel" == "7" ] |
if [ "$distrel" == "7" ] |
20 |
then |
then |
21 |
PYTHONPATH=/usr/lib/anaconda/ /usr/lib/anaconda-runtime/genhdlist \ |
PYTHONPATH=/usr/lib/anaconda/ /usr/lib/anaconda-runtime/genhdlist \ |
78 |
# Copy updated isolinux files |
# Copy updated isolinux files |
79 |
sudo cp -f /stage/extra/isolinux/$distrel/* $(pwd)/$distarch/isolinux/ |
sudo cp -f /stage/extra/isolinux/$distrel/* $(pwd)/$distarch/isolinux/ |
80 |
|
|
81 |
sudo chown -R 9000:9001 $(pwd)/$distarch/ |
find $(pwd)/$distarch -\( -not -user 9000 -o -not -group 9000 -\) -print0 | sudo xargs -r0 chown 9000:9000 |
82 |
sudo chmod -R u+rwX,g+rwX,o+rX,o-w $(pwd)/$distarch/ |
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 |
83 |
|
|
84 |
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" |
85 |
|
|