summaryrefslogtreecommitdiff
path: root/Kernel
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-03-20 04:26:30 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-03-20 04:26:30 +0100
commit9120b05a4044b346be397b0ae5b9b7e9a8cbd0b1 (patch)
tree529e549f4fb7a48c3526dda0ee36654af4dc5bde /Kernel
parent67009cee8e6db04a3ba3b07a7bbde8c9e8e21b8a (diff)
downloadserenity-9120b05a4044b346be397b0ae5b9b7e9a8cbd0b1.zip
Rename DNSLookupServer => LookupServer.
Diffstat (limited to 'Kernel')
-rw-r--r--Kernel/init.cpp4
-rwxr-xr-xKernel/makeall.sh4
-rwxr-xr-xKernel/sync.sh3
3 files changed, 5 insertions, 6 deletions
diff --git a/Kernel/init.cpp b/Kernel/init.cpp
index 728a72c411..b397255cc8 100644
--- a/Kernel/init.cpp
+++ b/Kernel/init.cpp
@@ -85,9 +85,9 @@ VFS* vfs;
int error;
- auto* dns_lookup_server_process = Process::create_user_process("/bin/DNSLookupServer", (uid_t)100, (gid_t)100, (pid_t)0, error, { }, { }, tty0);
+ auto* dns_lookup_server_process = Process::create_user_process("/bin/LookupServer", (uid_t)100, (gid_t)100, (pid_t)0, error, { }, { }, tty0);
if (error != 0) {
- dbgprintf("error spawning DNSLookupServer: %d\n", error);
+ dbgprintf("error spawning LookupServer: %d\n", error);
hang();
}
diff --git a/Kernel/makeall.sh b/Kernel/makeall.sh
index 12bed3dc5f..4307dac728 100755
--- a/Kernel/makeall.sh
+++ b/Kernel/makeall.sh
@@ -12,8 +12,8 @@ $make_cmd -C ../LibM && \
(cd ../LibM && ./install.sh) && \
$make_cmd -C ../LibM clean && \
$make_cmd -C ../LibM clean && \
-$make_cmd -C ../Servers/DNSLookupServer clean && \
-$make_cmd -C ../Servers/DNSLookupServer && \
+$make_cmd -C ../Servers/LookupServer clean && \
+$make_cmd -C ../Servers/LookupServer && \
$make_cmd -C ../WindowServer clean && \
$make_cmd -C ../WindowServer && \
$make_cmd -C ../LibGUI clean && \
diff --git a/Kernel/sync.sh b/Kernel/sync.sh
index be6c3bbbfb..0edbe8fefa 100755
--- a/Kernel/sync.sh
+++ b/Kernel/sync.sh
@@ -88,8 +88,7 @@ cp -v ../Applications/About/About mnt/bin/About
cp -v ../Applications/TextEditor/TextEditor mnt/bin/TextEditor
cp -v ../Applications/IRCClient/IRCClient mnt/bin/IRCClient
ln -s IRCClient mnt/bin/irc
-cp -v ../Servers/DNSLookupServer/DNSLookupServer mnt/bin/DNSLookupServer
-ln -s DNSLookupServer mnt/bin/dns
+cp -v ../Servers/LookupServer/LookupServer mnt/bin/LookupServer
cp -v ../WindowServer/WindowServer mnt/bin/WindowServer
cp -v kernel.map mnt/
sh sync-local.sh