1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 10:08:10 +00:00

Kernel: Move kernel symbols to /res/kernel.map and make it root-only

Let's lock down access to the kernel symbol table, since it trivializes
learning where the kernel functions are.

Of course, you can just build the same revision yourself locally and
learn the information, but we're taking one step at a time here. :^)
This commit is contained in:
Andreas Kling 2020-01-02 20:11:08 +01:00
parent 51a9e31fb2
commit 8eb20bdfa2
2 changed files with 3 additions and 2 deletions

View file

@ -63,7 +63,8 @@ echo "done"
printf "installing base system... "
cp -R ../Base/* mnt/
cp -R ../Root/* mnt/
cp kernel.map mnt/
cp kernel.map mnt/res/
chmod 400 mnt/res/kernel.map
echo "done"
printf "installing users... "