diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-01-15 06:30:19 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-01-15 06:30:19 +0100 |
commit | 2f74c2f43009723c996f508f423eab3013b47792 (patch) | |
tree | c63ab495172eec96867ff28ffcffb5fbcbca0c98 /Kernel/makeall.sh | |
parent | ecb4ab0943530794fb00a0a6e2a82e3e94e2f9a3 (diff) | |
download | serenity-2f74c2f43009723c996f508f423eab3013b47792.zip |
Add basic PTY support.
For now, there are four hard-coded PTYs: /dev/pt{m,s}[0123]
Use this in the Terminal to open a pty pair and spawn a shell.
Diffstat (limited to 'Kernel/makeall.sh')
-rwxr-xr-x | Kernel/makeall.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Kernel/makeall.sh b/Kernel/makeall.sh index dd3e0e447e..15c36c18ab 100755 --- a/Kernel/makeall.sh +++ b/Kernel/makeall.sh @@ -6,6 +6,8 @@ make -C ../LibC clean && \ make -C ../LibC && \ make -C ../Userland clean && \ make -C ../Userland && \ +make -C ../Terminal clean && \ +make -C ../Terminal && \ make clean &&\ make && \ sudo ./sync.sh |