This repository was archived by the owner on Sep 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathREADME.wireless
54 lines (34 loc) · 1.42 KB
/
README.wireless
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
#########################################
Boot TCOS from wireless device
#########################################
1.- Edit /etc/tcos/tcos.conf and set vars this vars:
TCOS_WIRELESS_MODS="driver"
TCOS_WIRELESS_ENC="enc"
when driver can be:
* madwifi: alias of atheros chipset (copy ath-pci, ath-hal....)
* ipw2*00: need firmware in /lib/firmware
* other kernel wireless module
you can put more than one module (space separated)
enc is type of encryption:
* empty: use a free wireless network
* WEP: you will be asked for passprhase (not work yet)
* WPA: if you have a file like this /etc/wpa_supplicant/*.conf
passhprhase and ESSID will be used, if not will be asked
during boot
Rebuild image:
# gentcos -tftp
You will see "Package Wireless support ...."
Then copy the following files into hdd of wireless thin client:
vmlinuz-x.x.x (same version of compiled with tcos)
/var/lib/tcos/tftp/initramfs-x.x.x
And add the following to grub menu.lst:
# tcos
title TCOS, kernel 2.6.17-10-generic
root (hd0,0)
kernel /boot/vmlinuz-2.6.17-10-generic ramdisk_size=65536 root=/dev/ram0 quiet boot=tcos wifi=1 essid=ESSID server=192.168.0.254
initrd /var/lib/tcos/tftp/initramfs-2.6.17-10-generic
boot
Important vars:
wifi=1 (enable wifi network)
essid=ESSID (your wireless ESSID)
server=xx.xx.xx.xx (TFTP and XMDCP server)