diff options
author | Andreas Kling <kling@serenityos.org> | 2021-04-29 21:40:59 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-04-29 22:16:18 +0200 |
commit | def1f1444aeee2caf6d47d0eb96a18ffc476c3f9 (patch) | |
tree | 2cd5b10136486bda1ec35b161100a081337ef514 /Meta | |
parent | b88b19272e2f1876ebe0dac0601f087a62d099c0 (diff) | |
download | serenity-def1f1444aeee2caf6d47d0eb96a18ffc476c3f9.zip |
WindowServer: Move configuration file to /etc/WindowServer.ini
This was in the /etc/WindowServer/ directory which had nothing else in
it, so let's just get rid of the directory and move this up one step.
Diffstat (limited to 'Meta')
-rwxr-xr-x | Meta/build-root-filesystem.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Meta/build-root-filesystem.sh b/Meta/build-root-filesystem.sh index a872f5fcc4..888dbb57c9 100755 --- a/Meta/build-root-filesystem.sh +++ b/Meta/build-root-filesystem.sh @@ -46,8 +46,8 @@ $CP "$SERENITY_SOURCE_DIR"/Toolchain/Local/i686/i686-pc-serenity/lib/libgcc_s.so # the permissions needed in the image. chmod -R g+rX,o+rX "$SERENITY_SOURCE_DIR"/Base/* mnt/ -chmod 660 mnt/etc/WindowServer/WindowServer.ini -chown $window_uid:$window_gid mnt/etc/WindowServer/WindowServer.ini +chmod 660 mnt/etc/WindowServer.ini +chown $window_uid:$window_gid mnt/etc/WindowServer.ini echo "/bin/sh" > mnt/etc/shells chown 0:$wheel_gid mnt/bin/su |