This repository has been archived by the owner on Sep 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtcos.conf
243 lines (166 loc) · 5.44 KB
/
tcos.conf
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
# some build vars
TCOS_DIR=/usr/share/initramfs-tools-tcos
TCOS_BINS=/usr/lib/tcos
TFTP_DIR=/var/lib/tcos/tftp
TCOS_CONF=/etc/tcos
TCOS_VAR=/var/lib/tcos
TCOS_PKG_CACHE=/var/cache/tcos/packages
TCOS_CHROOT=/var/lib/tcos/chroot
TFTP_MSG=tcos.msg
ISOS="/var/lib/tcos/isos"
VOLUMENAME="TCOS boot cd"
DISTRO="TCOS"
# kernel used to build initramfs
TCOS_KERNEL="2.6.24-1-486"
# kernel cmdline ( needed for nbi images)
TCOS_APPEND="ramdisk_size=65536 initrd=initramfs-${TCOS_KERNEL} root=/dev/ram boot=tcos quiet splash"
# Net boot menu (set to 1 to enable)
TCOS_NETBOOT_MENU=
# Net boot menu VESA MODE (not work with all BIOS)
TCOS_NETBOOT_MENU_VESA=1
# Hide install and update options (set to empty to show options)
TCOS_NETBOOT_HIDE_INSTALL=1
# verbose messages
TCOS_DEBUG=1
# If RAM is less than this number (in Mb) tcos will try to boot from NFS server
TCOS_MIN_RAM=38
# Max mem (including swap that can use thin client) avoid firefox XPixmaps insane consumption (set to 0 to disable)
TCOS_MAX_MEM=0
# show a message of not found modules (better use showmodules cmdline)
TCOS_SHOW_NEEDED_MODULES=
# list of kernel modules separated with comas
TCOS_EXTRA_MODULES=
# list of cached packages
TCOS_PKG_CACHE_LIST=
# disable usr.squashfs if =1, empty create usr.squashfs
TCOS_DISABLE_SQUASHFS=
# include usr.squashfs in initramfs /mnt/, if =1 download with tftp (less tftpboot time)
TCOS_SQUASHFS=1
# disable usplash
TCOS_DISABLE_USPLASH=1
# usplash theme (default usplash-tcos.so)
TCOS_USPLASH="usplash-tcos.so"
# disable Plymouth
TCOS_DISABLE_PLYMOUTH=
# Playmouth theme
TCOS_PLYMOUTH=""
# wireless support
TCOS_WIRELESS=
# wireless modules
# (avalaible ipw2200, ipw2100, madwifi (ath-pci, ath-hal, etc...), zd1211 (Zydas) and all kernel supported)
# ndiswrapper don't work (perl script)
# server must have firmware to generate correct images
# put names with spaces
# example: TCOS_WIRELESS_MODS="ipw2200 ipw2100 zd1211"
TCOS_WIRELESS_MODS=""
# methods of encription
# empty=no encryption
# WEP
# WPA
# only one method (no autodetection yet): example: TCOS_WIRELESS_ENC="WEP"
TCOS_WIRELESS_ENC="WPA"
# WEP/WPA key
TCOS_WIRELESS_KEY=
# inetd support (actions with telnet)
TCOS_INETD=1
# acpid support (button poweroff thin client)
TCOS_ACPID=1
# server user to be admin in Thin Client network (need ssh key and italc key)
TCOS_ADMIN_USER="root"
# number of TTY created on boot (default 1)
TCOS_TTY=1
# tty1 console with password (default 1 = yes)
TCOS_TTY1_PROTECTED=1
# ssh support => dropbear package needed
TCOS_SSH=1
# root password ( if empty root password is "root" )
TCOS_ROOT_PASSWD=""
# Autofs support (deprecated)
TCOS_AUTOFS=
# REMOTEFS access mode ( values: shfs, ltspfs, none )
TCOS_REMOTEFS="ltspfs"
# USB support
TCOS_USB=
# Put this vars to 1 to lower initramfs size (disables USB and IDE)
TCOS_DISABLE_USB=1
TCOS_DISABLE_IDE=1
# discover support ( load kernel modules of found hardware)
TCOS_DISCOVER=
# Xorg support (needed to connect XDCMP or local session)
TCOS_XORG=1
# Include in image all xorg installed drivers (~ +3Mb)
TCOS_XORG_ALLDRIVERS=
# Include OpenGL files (needed to run apps in fullscreen ~ +3Mb)
TCOS_XORG_OPENGL=
# Xorg cmdline options ( example -ac to disable control access, default empty)
TCOS_XORG_OPTS=""
# allowed host than can use Xorg (localhost is always, host separated with spaces)
TCOS_XORG_XHOSTS=""
# DEFAULT keyboard map
TCOS_XORG_XKB="es"
# DEFAULT keyboard map
TCOS_XORG_XKBMODEL="pc105"
# type of X session ( L=local R=remote S=SSH F=freenx N=no startx W=rdesktop)
TCOS_XORG_TYPE="R"
# wakeonlan support
TCOS_WAKEONLAN=
# printer support
TCOS_PRINTER=
# freenx support ( need freenx installed on server )
TCOS_FREENX=
# freenx squashfs ( need freenx installed on server )
TCOS_FREENX_SQUASHFS=
# italc Master-Eye client support
TCOS_ITALC=
# support for x11vnc server ( conflicts with iTALC )
TCOS_X11VNC=
# Enable rDesktop
TCOS_RDESKTOP=
# rdesktop support (IP address or hostname of MS Windows Terminal Server)
TCOS_RDESKTOP_SERVER=""
# embedded web browser values=none, dillo(25 Mb), links2 (6 Mb)
TCOS_WEB_BROWSER=none
# Sound support ( this includes kernel sound modules alsa files and esound binaries)
TCOS_SOUND=
# ISA sound support (old sound cards)
TCOS_SOUND_ISA=
# force OSS compability (sis7019 need it), normally it is autodetected
TCOS_SOUND_OSS=
# disable acpi and raid stuff
TCOS_DISABLE_ACPI=1
# write some fuck service to inetd.conf (insecure, debug only)
opentelnet=0
# VOLUME levels of mixer master and pcm ( values 0%-100% or 1-31 )
TCOS_VOLUME="80%"
# boot quietly (no used yet)
TCOS_quiet=n
# PulseAudio support, use pulseaudio instead of Esound Daemon
TCOS_PULSEAUDIO=
# PulseAudio work with some resample methods
# Avalaible options=
# * src-sinc-medium-quality
# * src-sinc-best-quality
# * src-sinc-fastest
# * src-zero-order-hold
# * src-linear
# * trivial
TCOS_PULSEAUDIO_RESAMPLE_METHOD="src-sinc-fastest"
# Use NFS and not download files with tftp. Values= (none|nfs)
TCOS_USENFS=none
# HTTPFS is a fuse http filesystem to mount usr.squashfs
TCOS_HTTPFS=
# This is intended to install a debian/ubuntu system in thin client
# with debootstrap
TCOS_DEBOOTSTRAP=
# Include installer (you can build isos with these)
TCOS_INSTALLER=
# syslinux installer extra boot params
TCOS_INSTALLER_BOOT_OPT="quiet splash"
# some special settings for thin clients
# epatec 3800 (via)
TCOS_ETC3800=
# epatec 2300 fast boot
TCOS_ETC2300=
# Intel Dot Station (Paquito)
TCOS_PAQUITO=
# All dynamic data come here....