blob: 85f7f2893250dc46c61accc93831ff704385241c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
#!/bin/sh
MAKEDEPS="sh"
DEPS="mksh"
PKG_VER=N/A
DESC="Default system configs for xilinux"
ADDITIONAL="consolecolor"
package () {
mkdir -p $PKG_DEST/etc/
mkdir -p $PKG_DEST/etc/sysconfig
cat > $PKG_DEST/etc/profile << "EOF"
umask 022
PS1="\u@\h \w $ "
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/.local/bin
export PATH
export PS1
# Termcap is outdated, old, and crusty, kill it.
unset TERMCAP
# Man is much better than us at figuring this out
unset MANPATH
export QT_QPA_PLATFORMTHEME=qt5ct
EOF
cat > $PKG_DEST/etc/inputrc << "EOF"
# Begin /etc/inputrc
# Modified by Chris Lynn <roryo@roryo.dynup.net>
# Allow the command prompt to wrap to the next line
set horizontal-scroll-mode Off
# Enable 8bit input
set meta-flag On
set input-meta On
# Turns off 8th bit stripping
set convert-meta Off
# Keep the 8th bit for display
set output-meta On
# none, visible or audible
set bell-style none
# All of the following map the escape sequence of the value
# contained in the 1st argument to the readline specific functions
"\eOd": backward-word
"\eOc": forward-word
# for linux console
"\e[1~": beginning-of-line
"\e[4~": end-of-line
"\e[5~": beginning-of-history
"\e[6~": end-of-history
"\e[3~": delete-char
"\e[2~": quoted-insert
# for xterm
"\eOH": beginning-of-line
"\eOF": end-of-line
# for Konsole
"\e[H": beginning-of-line
"\e[F": end-of-line
# End /etc/inputrc
EOF
cat > $PKG_DEST/etc/shells << "EOF"
/bin/sh
EOF
cat > $PKG_DEST/etc/lsb-release << "EOF"
LSB_VERSION=1.4
DISTRIB_ID=xi
DISTRIB_RELEASE=rolling
DISTRIB_DESCRIPTION="XiLinux"
EOF
cat > $PKG_DEST/etc/os-release << "EOF"
NAME="xilinux"
PRETTY_NAME="XiLinux"
ID=xi
BUILD_ID=rolling
ANSI_COLOR="38;2;23;147;209"
HOME_URL="https://xi.davidovski.xyz"
DOCUMENTATION_URL="https://xi.davidovski.xyz"
SUPPORT_URL="https://xi.davidovski.xyz"
BUG_REPORT_URL="https://xi.davidovski.xyz"
LOGO=xilinux-logo
EOF
cat > $PKG_DEST/etc/default/useradd << "EOF"
GROUP=999
HOME=/home
INACTIVE=-1
EXPIRE=
SHELL=/bin/mksh
SKEL=/etc/skel
CREATE_MAIL_SPOOL=yes
LOG_INIT=yes
EOF
mkdir -p $PKG_DEST/etc/init.d
install -m755 consolecolor $PKG_DEST/etc/init.d/
mkdir -p $PKG_DEST/etc/runlevels/boot
ln -s /etc/init.d/consolecolor $PKG_DEST/etc/runlevels/boot/consolecolor
cat > $PKG_DEST/etc/shells << "EOF"
/bin/sh
EOF
}
|