diff options
author | 2023-01-03 23:56:37 -0600 | |
---|---|---|
committer | 2023-01-03 23:56:37 -0600 | |
commit | e81dfb07f53e817a83e3c3a7c247cdb57a507fdf (patch) | |
tree | 7a4f90ce85d55ba7ec78ed8795bd21031e26e856 /etc | |
parent | version 2.9 (diff) | |
download | baselayout-e81dfb07f53e817a83e3c3a7c247cdb57a507fdf.tar.gz baselayout-e81dfb07f53e817a83e3c3a7c247cdb57a507fdf.tar.bz2 baselayout-e81dfb07f53e817a83e3c3a7c247cdb57a507fdf.zip |
drop OS specific support
This is no longer needed since we have dropped support for *BSD.
Signed-off-by: William Hubbs <williamh@gentoo.org>
Diffstat (limited to 'etc')
-rw-r--r-- | etc/filesystems | 14 | ||||
-rw-r--r-- | etc/inputrc | 81 | ||||
-rw-r--r-- | etc/issue | 3 | ||||
-rw-r--r-- | etc/issue.logo | 13 |
4 files changed, 111 insertions, 0 deletions
diff --git a/etc/filesystems b/etc/filesystems new file mode 100644 index 00000000..0bb9c3c5 --- /dev/null +++ b/etc/filesystems @@ -0,0 +1,14 @@ +# /etc/filesystems +# +# This file defines the filesystems search order used by a +# 'mount -t auto' command. +# + +# Uncomment the following line if your modular kernel has vfat +# support and you want mount to try vfat. +#vfat + +# Keep the last '*' intact as it directs mount to use the +# filesystems list available at /proc/filesystems also. +# Don't remove it unless you REALLY know what you are doing! +* diff --git a/etc/inputrc b/etc/inputrc new file mode 100644 index 00000000..a1d7a256 --- /dev/null +++ b/etc/inputrc @@ -0,0 +1,81 @@ +# /etc/inputrc: initialization file for readline +# +# For more information on how this file works, please see the +# INITIALIZATION FILE section of the readline(3) man page +# +# Quick dirty little note: +# To get the key sequence for binding, you can abuse bash. +# While running bash, hit CTRL+V, and then type the key sequence. +# So, typing 'ALT + left arrow' in Konsole gets you back: +# ^[[1;3D +# The readline entry to make this skip back a word will then be: +# "\e[1;3D" backward-word +# +# Customization note: +# You don't need to put all your changes in this file. You can create +# ~/.inputrc which starts off with the line: +# $include /etc/inputrc +# Then put all your own stuff after that. +# + +# do not bell on tab-completion +#set bell-style none + +set meta-flag on +set input-meta on +set convert-meta off +set output-meta on + +# Completed names which are symbolic links to +# directories have a slash appended. +set mark-symlinked-directories on + +$if mode=emacs + +# for linux console and RH/Debian xterm +# allow the use of the Home/End keys +"\e[1~": beginning-of-line +"\e[4~": end-of-line +# map "page up" and "page down" to search history based on current cmdline +"\e[5~": history-search-backward +"\e[6~": history-search-forward +# allow the use of the Delete/Insert keys +"\e[3~": delete-char +"\e[2~": quoted-insert + +# gnome / others (escape + arrow key) +"\e[5C": forward-word +"\e[5D": backward-word +# konsole / xterm / rxvt (escape + arrow key) +"\e\e[C": forward-word +"\e\e[D": backward-word +# gnome / konsole / others (control + arrow key) +"\e[1;5C": forward-word +"\e[1;5D": backward-word +# aterm / eterm (control + arrow key) +"\eOc": forward-word +"\eOd": backward-word + +# konsole (alt + arrow key) +"\e[1;3C": forward-word +"\e[1;3D": backward-word + +# Chromebooks remap alt + backspace so provide alternative (alt + k) +"\ek": backward-kill-word + +$if term=rxvt +"\e[8~": end-of-line +$endif + +# for non RH/Debian xterm, can't hurt for RH/Debian xterm +"\eOH": beginning-of-line +"\eOF": end-of-line + +# for freebsd console +"\e[H": beginning-of-line +"\e[F": end-of-line +$endif + +# fix Home and End for German users +"\e[7~": beginning-of-line +"\e[8~": end-of-line diff --git a/etc/issue b/etc/issue new file mode 100644 index 00000000..015e46d5 --- /dev/null +++ b/etc/issue @@ -0,0 +1,3 @@ + +This is \n.\O (\s \m \r) \t + diff --git a/etc/issue.logo b/etc/issue.logo new file mode 100644 index 00000000..d8e20efd --- /dev/null +++ b/etc/issue.logo @@ -0,0 +1,13 @@ +[0;35;40m . +[0;35;40m .vir. d$b +[0;35;40m .d$$$$$$b. .cd$$b. .d$$b. d$$$$$$$$$$$b .d$$b. .d$$b. +[0;35;40m $$$$( )$$$b d$$$()$$$. d$$$$$$$b Q$$$$$$$P$$$P.$$$$$$$b. .$$$$$$$b. +[0;35;40m Q$$$$$$$$$$B$$$$$$$$P" d$$$PQ$$$$b. $$$$. .$$$P' `$$$ .$$$P' `$$$ +[0;35;40m "$$$$$$$P Q$$$$$$$b d$$$P Q$$$$b $$$$b $$$$b..d$$$ $$$$b..d$$$ +[0;35;40m d$$$$$$P" "$$$$$$$$ Q$$$ Q$$$$ $$$$$ `Q$$$$$$$P `Q$$$$$$$P +[0;35;40m $$$$$$$P `""""" "" "" Q$$$P "Q$$$P" "Q$$$P" +[0;35;40m `Q$$P" """ +[0;37;40m + +This is \n.\O (\s \m \r) \t + |