diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-03-21 03:57:42 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-03-21 03:57:42 +0100 |
commit | 42755e98cf2ce7d10f1899051b63513d442f92ec (patch) | |
tree | e6fbe05808cea137bd26fc0e5ae17534354448f5 /Kernel | |
parent | ed2303e2d8f795a7c1bd597fed9f77afe526c228 (diff) | |
download | serenity-42755e98cf2ce7d10f1899051b63513d442f92ec.zip |
SharedGraphics: Implement a simple PNG decoder.
This is extremely unoptimized, but it does successfully load "folder32.png"
so it must be at least somewhat correct. :^)
Diffstat (limited to 'Kernel')
-rwxr-xr-x | Kernel/sync.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/sync.sh b/Kernel/sync.sh index ce77c795b8..52e94cf382 100755 --- a/Kernel/sync.sh +++ b/Kernel/sync.sh @@ -78,6 +78,7 @@ cp -v ../Userland/ping mnt/bin/ping cp -v ../Userland/uc mnt/bin/uc cp -v ../Userland/tc mnt/bin/tc cp -v ../Userland/host mnt/bin/host +cp -v ../Userland/qs mnt/bin/qs chmod 4755 mnt/bin/su cp -v ../Applications/Terminal/Terminal mnt/bin/Terminal cp -v ../Applications/FontEditor/FontEditor mnt/bin/FontEditor |