1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-08 22:47:30 +00:00

Meta: Allow creating disk image without installing kernel into it

This change allows for creating smaller disk images, which is useful for
creating a disk image that will be put into ram.
This commit is contained in:
Timon Kruiper 2023-01-30 13:50:28 +01:00 committed by Linus Groh
parent cf5b02e3a4
commit a9f7267cbd

View File

@ -117,9 +117,18 @@ if [ -f mnt/usr/Tests/Kernel/TestProcFSWrite ]; then
chmod 4755 mnt/usr/Tests/Kernel/TestProcFSWrite
fi
chmod 0400 mnt/res/kernel.map
chmod 0400 mnt/boot/Kernel
chmod 0400 mnt/boot/Kernel.debug
if [ -f mnt/res/kernel.map ]; then
chmod 0400 mnt/res/kernel.map
fi
if [ -f mnt/boot/Kernel ]; then
chmod 0400 mnt/boot/Kernel
fi
if [ -f mnt/boot/Kernel.debug ]; then
chmod 0400 mnt/boot/Kernel.debug
fi
chmod 600 mnt/etc/shadow
chmod 755 mnt/res/devel/templates/*.postcreate
echo "done"