diff options
author | Ben Wiederhake <BenWiederhake.GitHub@gmx.de> | 2021-10-28 00:44:35 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-10-31 18:44:12 +0100 |
commit | f20a42e871e64ce34fac87d415a0f5718f7bae0c (patch) | |
tree | 5001e8b4581ee496ce2fa7c2d5aaf1c8d4a86e84 /Meta | |
parent | 03526a7f2b3281fb40f3b1bd9b21064a19c7cd93 (diff) | |
download | serenity-f20a42e871e64ce34fac87d415a0f5718f7bae0c.zip |
Kernel: Write test that crashes ProcFS
Diffstat (limited to 'Meta')
-rwxr-xr-x | Meta/build-root-filesystem.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Meta/build-root-filesystem.sh b/Meta/build-root-filesystem.sh index e11a7b97c8..8844ccdb57 100755 --- a/Meta/build-root-filesystem.sh +++ b/Meta/build-root-filesystem.sh @@ -106,6 +106,10 @@ if [ -f mnt/usr/Tests/Kernel/TestMemoryDeviceMmap ]; then chown 0:0 mnt/usr/Tests/Kernel/TestMemoryDeviceMmap chmod 4755 mnt/usr/Tests/Kernel/TestMemoryDeviceMmap fi +if [ -f mnt/usr/Tests/Kernel/TestProcFSWrite ]; then + chown 0:0 mnt/usr/Tests/Kernel/TestProcFSWrite + chmod 4755 mnt/usr/Tests/Kernel/TestProcFSWrite +fi chmod 0400 mnt/res/kernel.map chmod 0400 mnt/boot/Kernel |