diff options
author | Max Rees <maxcrees@me.com> | 2020-06-04 18:19:31 -0500 |
---|---|---|
committer | Max Rees <maxcrees@me.com> | 2020-06-04 19:15:42 -0500 |
commit | b63c852ee96d6f9636fe17d1009f82153d9645c3 (patch) | |
tree | 6535bbeb79d6c9b64d9c7215b27a0b3ddf939e88 /system/console-setup/console-setup.initd | |
parent | 44424567c580132589c9020c4406478993f2cf65 (diff) | |
download | packages-b63c852ee96d6f9636fe17d1009f82153d9645c3.tar.gz packages-b63c852ee96d6f9636fe17d1009f82153d9645c3.tar.bz2 packages-b63c852ee96d6f9636fe17d1009f82153d9645c3.tar.xz packages-b63c852ee96d6f9636fe17d1009f82153d9645c3.zip |
system/console-setup: strip down to user/ckbcomp
Diffstat (limited to 'system/console-setup/console-setup.initd')
-rw-r--r-- | system/console-setup/console-setup.initd | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/system/console-setup/console-setup.initd b/system/console-setup/console-setup.initd deleted file mode 100644 index bf3479566..000000000 --- a/system/console-setup/console-setup.initd +++ /dev/null @@ -1,32 +0,0 @@ -#!/sbin/openrc-run -# Copyright (c) 2007-2015 The OpenRC Authors. -# See the Authors file at the top-level directory of this distribution and -# https://github.com/OpenRC/openrc/blob/master/AUTHORS -# -# This file is part of OpenRC. It is subject to the license terms in -# the LICENSE file found in the top-level directory of this -# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE -# This file may not be copied, modified, propagated, or distributed -# except according to the terms contained in the LICENSE file. - -description="Applies a keymap and font for the consoles." - -depend() -{ - provide keymaps - need localmount termencoding - after bootmisc - keyword -docker -lxc -openvz -prefix -systemd-nspawn -uml -vserver -xenu -} - -start() -{ - # Force linux keycodes for PPC. - if [ -f /proc/sys/dev/mac_hid/keyboard_sends_linux_keycodes ]; then - echo 1 > /proc/sys/dev/mac_hid/keyboard_sends_linux_keycodes - fi - - ebegin "Loading default key mappings / font" - setupcon - eend $? "Error loading key mappings / font" || return $? -} |