diff options
author | Sergey Bugaev <bugaevc@gmail.com> | 2019-09-21 00:47:31 +0300 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-09-28 18:29:42 +0200 |
commit | 02ee8cbbe2f16d7da15c9b6454e5217fc2e7438a (patch) | |
tree | 75bb65ed9c8cdb86af346ef23a037e50df31d57d /Kernel | |
parent | 6ec625d6f38d93751be44afc79ab713b1cec8f1b (diff) | |
download | serenity-02ee8cbbe2f16d7da15c9b6454e5217fc2e7438a.zip |
Applications: Add a new Help app
This is a neat simple app that can display the Serenity manual ^)
Diffstat (limited to 'Kernel')
-rwxr-xr-x | Kernel/build-root-filesystem.sh | 2 | ||||
-rwxr-xr-x | Kernel/makeall.sh | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/Kernel/build-root-filesystem.sh b/Kernel/build-root-filesystem.sh index 703f303ce1..62a0c1b772 100755 --- a/Kernel/build-root-filesystem.sh +++ b/Kernel/build-root-filesystem.sh @@ -88,6 +88,7 @@ cp ../Applications/Calculator/Calculator mnt/bin/Calculator cp ../Applications/SoundPlayer/SoundPlayer mnt/bin/SoundPlayer cp ../Applications/DisplayProperties/DisplayProperties mnt/bin/DisplayProperties cp ../Applications/Welcome/Welcome mnt/bin/Welcome +cp ../Applications/Help/Help mnt/bin/Help cp ../Demos/HelloWorld/HelloWorld mnt/bin/HelloWorld cp ../Demos/HelloWorld2/HelloWorld2 mnt/bin/HelloWorld2 cp ../Demos/RetroFetch/RetroFetch mnt/bin/RetroFetch @@ -127,6 +128,7 @@ ln -s ChanViewer mnt/bin/cv ln -s Calculator mnt/bin/calc ln -s Inspector mnt/bin/ins ln -s SoundPlayer mnt/bin/sp +ln -s Help mnt/bin/help echo "done" mkdir -p mnt/boot/ diff --git a/Kernel/makeall.sh b/Kernel/makeall.sh index d4713cf6ac..2e9e2b5996 100755 --- a/Kernel/makeall.sh +++ b/Kernel/makeall.sh @@ -59,6 +59,7 @@ build_targets="$build_targets ../Applications/Terminal" build_targets="$build_targets ../Applications/TextEditor" build_targets="$build_targets ../Applications/SoundPlayer" build_targets="$build_targets ../Applications/Welcome" +build_targets="$build_targets ../Applications/Help" build_targets="$build_targets ../Demos/Fire" build_targets="$build_targets ../Demos/HelloWorld" |