diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-10-25 21:39:37 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-10-25 21:39:37 +0200 |
commit | 3faaa3e04a3eef72554e9235cb81327642b62ab7 (patch) | |
tree | 688020df32805519700a13e2371b92560a57e3c6 /Kernel | |
parent | dc6f57f19cff71c6bd83a42fd58a93adbbeb70cb (diff) | |
download | serenity-3faaa3e04a3eef72554e9235cb81327642b62ab7.zip |
Add /bin/false and /bin/true for fun. :^)
Diffstat (limited to 'Kernel')
-rw-r--r-- | Kernel/_fs_contents | bin | 1024000 -> 1024000 bytes | |||
-rwxr-xr-x | Kernel/sync-sh | 2 |
2 files changed, 2 insertions, 0 deletions
diff --git a/Kernel/_fs_contents b/Kernel/_fs_contents Binary files differindex 9dd078d965..82f977dc26 100644 --- a/Kernel/_fs_contents +++ b/Kernel/_fs_contents diff --git a/Kernel/sync-sh b/Kernel/sync-sh index 4053a3ab20..8b8b687be3 100755 --- a/Kernel/sync-sh +++ b/Kernel/sync-sh @@ -7,5 +7,7 @@ cp ../Userland/ls mnt/bin/ls cp ../Userland/pwd mnt/bin/pwd cp ../Userland/sleep mnt/bin/sleep cp ../Userland/date mnt/bin/date +cp ../Userland/true mnt/bin/true +cp ../Userland/false mnt/bin/false umount mnt sync |