Copyright © 2002 by Michel Stempin
Revision History | ||
---|---|---|
Revision v1.1 | 2002-08-30 | Revised by: ms |
Corrections as suggested by Jamey Hicks | ||
Revision v1.0 | 2002-08-11 | Revised by: ms |
Initial version |
I hope you'll enjoy reading this document as much as I have enjoyed writing it.
Although a lot of things on this can be found on the Internet (especially at http://www.handhelds.org), I think there is a need for a self-contained source of information that can help everybody achieve this transformation successfully.
Chapter 2 covers the backup of the original system and user data.
Chapter 4 shows the bootloader's installation procedure.
Chapter 5 continues with the installation of a minimum GNU/Linux bootstrap
Chapter 7 finishes the installation of the Familiar GNU/Linux distribution.
This site is the home of GNU/Linux on iPAQs. You'll find the distributions, tools, packages and related information.
This document is copyright© 2002 by Michel Stempin.
Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or any later version published by the Free Software Foundation; with no Invariant Sections, with no Front-Cover Texts, and with no Back-Cover Texts. A copy of the license is included in the appendix entitled "GNU Free Documentation License" (see Appendix A).
The following is a list of the typographical conventions used in this document:
New Term | Used for new terms | |
Filename | Used for file and directory names | |
Command | Used for program and command names | |
Constant Width | Used in the text to indicate words that appear in code or other literal strings | |
| Used in examples to show the contents of files | |
| Used in examples to show the output from commands | |
| Used in examples to show a "root" shell prompt | |
| Used in examples to show a normal user shell prompt | |
Replaceable | Used to indicate variable options, keywords, or text that the user is to replace with an actual value | |
User Input | Used in examples to show commands or other text that should be typed literally by the user |
Pay special attention to notes set apart from the text with the following icons:
Warning |
This is a warning. It helps you solve and avoid annoying problems. |
Feel free to send comments or ask technical questions about this document to the same address.
I also have a web page for the document, where I list errata, examples, or any additional information. You can access this page at:
I would like to thank also everybody at HandHelds.org. Without their first work, nothing would have been possible. This document is only another way of explaining what they discovered, I simply hope that I added some valuable information and a usefull approach of the subject.
The only possibility will be to use the slower serial cable attached to the cradle and PPP (Point to Point protocol), which provides a way to use TCP/IP over a serial line. In Chapter 6, as GNU/Linux is installed, we will setup a faster USB network.
For now, we will have to setup PPP both on the PocketPC iPAQ and on the GNU/Linux host.
The content of this file is as follows:
# /etc/ppp/peers/PocketPC -*- sh -*- pppd options for direct iPAQ connection # created 08-May-2002 Michel Stempin <michel.stempin@wanadoo.fr> # autodate: 08-May-2002 # autotime: 16:38 # The serial line to use. Use either "/dev/ttyS0" for "COM1" or "/dev/ttyS1" # for "COM2" PC ports. /dev/ttyS1 # Set the speed to 115200 bps. 115200 # As PocketPC considers us as a modem ;-), we have to pretend by sending # the expected answers. # For this, we use the "chat" program and "expect/send" pairs. You can specify # the "-v" option to /usr/sbin/chat if you want to debug the "modem" initial dialog. # Basically, the chat is (\r means a <CR>, i.e. a Carriage Return character): # - expect ATZ<CR> (reset modem command) # - send OK<CR> # - expect AT<CR> (are you here? command) # - send OK<CR> # - expect ATE0V1&C1&D2<CR> (disable echo, # send ASCII result codes, # Carrier Detect pin is used, # Data Terminal Ready pins reflects online state), # - send OK<CR> # - expect AS7=120<CR> (timeout 120s waiting for Carrier) # - send OK<CR> # - expect ATX3<CR> (ignore dial tone, report BUSY) # - send OK<CR> # - expect ATDT<CR> (dial using tone modulation) # - send CONNECT<CR> connect "/usr/sbin/chat 'ATZ\r' OK 'AT\r' OK 'ATE0V1&C1&D2\r' \ OK 'ATS7=120\r' OK 'ATX3\r' OK 'ATDT' CONNECT" # async character map -- 32-bit hex; each bit is a character # that needs to be escaped for pppd to receive it. 0x00000001 # represents '\x01', and 0x80000000 represents '\x1f'. asyncmap 0 # Do not require PocketPC to authenticate itself before allowing network # packets to be sent or received. # NOTE: This option is only available to the "root" user. noauth # No hardware flow control (i.e. RTS/CTS) to control the flow of data # on the serial port, as the iPAQ seems not to handle it. nocrtscts # Don't use the modem control lines local # Specifies that pppd should use a UUCP-style lock on the serial device # to ensure exclusive access to the device. lock # Don't fork to become a background process (otherwise pppd will do so # if a serial device is specified). -detach # Increase debugging level (same as -d). If this option is given, pppd # will log the contents of all control packets sent or received in a # readable form. The packets are logged through syslog with facility # daemon and level debug. This information can be directed to a file by # setting up /etc/syslog.conf appropriately (see syslog.conf(5)). (If # pppd is compiled with extra debugging enabled, it will log messages # using facility local2 instead of daemon). #debug # Enable debugging code in the kernel-level PPP driver. The argument n # is a number which is the sum of the following values: 1 to enable # general debug messages, 2 to request that the contents of received # packets be printed, and 4 to request that the contents of transmitted # packets be printed. #kdebug 7 # Sets the IP addresses on both side of the link. 192.168.1.100:192.168.1.101 |
As a convenience, we will add the following line to the /etc/hosts file:
192.168.1.101 ipaq ipaq.localdomain |
bash# echo "192.168.1.101 ipaq ipaq.localdomain" >> /etc/hosts |
We thus have to disable it, following these simple instructions:
Select "Internet parameters" in the first pulldown menu, then tap on "Modify..."
Check "Address allocated by server", then tap "ok". We are back to the new connection setup screen
Check "Cancel call..." and uncheck "Wait for tone before dialing", then tap on "Finish"
Our new connection is created. Tap on "ok". We are back to the main screen
On the GNU/Linux host, you can launch the connection manually by typing:
bash# /usr/sbin/pppd call PocketPC |
This launches pppd, calling the iPAQ with the option file we created in Section 1.1.1.
# Run a connection to the iPAQ ppp:2345:respawn:/usr/sbin/pppd call PocketPC |
bash# echo "# Run a connection to the iPAQ" >> /etc/inittab bash# echo "ppp:2345:respawn:/usr/sbin/pppd call PocketPC" >> /etc/inittab |
bash# init q |
You can observe if pppd is running by checking the /var/log/messages file.
That is, it does not fulfill our requirements: to be able to exchange files in both directions.
We first have to locate the Apache configuration file, by running the following command:
bash# find etc -name httpd.conf -print /etc/httpd/conf/httpd.conf |
bash# grep DocumentRoot /etc/httpd/conf/* /etc/httpd/conf/httpd.conf:# DocumentRoot: The directory out of which you will serve your /etc/httpd/conf/httpd.conf:DocumentRoot "/var/www/html" /etc/httpd/conf/httpd.conf:# This should be changed to whatever you set DocumentRoot to. /etc/httpd/conf/httpd.conf:# DocumentRoot /www/docs/dummy-host.example.com /etc/httpd/conf/httpd.conf:#DocumentRoot "/etc/httpd/htdocs" |
bash# cd /var/www/html bash# mkdir iPAQ; cd iPAQ |
We then have to launch the Apache Web server. On my Red Hat 7.2 distribution, I can issue either:
bash# service httpd start |
bash# /etc/rc.d/init.d/httpd start |
Depending on your GNU/Linux distribution, you may have to find the right way to do it...
http://www.oohito.com/wince/arm_j.htm
Unzip the archive using the following command:
bash# unzip FPS006AP.ZIP Archive: FTPS006AP.ZIP inflating: ftpsvr.exe inflating: ftpsvr.txt |
We are interested in the ftpsvr.exe file.
http://192.168.1.100/iPAQ/ftpsvr.exe
Note: You may have to go into the "Display" menu, and enable the "URL bar" option to be able to enter the URL.
A "Download" popup menu should open, asking you if you want to download the ftpsvr.exe file, giving you the option to open it after downloading. I suggest you to check this last option.
On the PocketPC iPAQ, you can now close Internet Explorer and go back to the main "Today" screen. In the lower right corner, you should have a small icon. When you tap on it, a window "FtpSvr for Windows® CE Ver 0.06" should open, that is a little too large on my iPAQ, so you may have to move it around to see it completely.
This window tells you that the FTP server is running, listening on port 21. You have the option to stop it, uninstall it (don't!), or exit.
Everything is ready now to be able to transfer files in both directions.
Whenever you want to restart the mini FTP server, you just have to click on the ftpsvr.exe icon where you saved it after downloading it (normally in the "My Documents" folder).
bash$ ftp ipaq Connected to ipaq (192.168.1.101). 220 FtpSvr (Version 0.06). Name (ipaq:root): 331 Password required for root. Password: 230 User root logged in. ftp> passive Passive mode off. ftp> |
Warning |
The mini FTP server should not be used permanently, as it lacks some important security features. You should only turn it on whenever necessary. |
You can now transfer files back and forth:
ftp> ls 200 PORT command successful. 150 Opening ASCII mode data connection for \467456.FTP(782 bytes). drwxrwxrwx 1 owner group 0 Jan 1 1998 iPAQ File Store -rw-rw-rw- 1 owner group 76 Sep 4 7:44 467456.FTP -rw-rw-rw- 1 owner group 282 Sep 4 7:16 mdmlog0.txt -rw-rw-rw- 1 owner group 72 Sep 4 7:14 mdmlog5.txt -rw-rw-rw- 1 owner group 10500 Sep 4 7:15 GCounterFile.mmf -rw-rw-rw- 1 owner group 56 Sep 3 20:00 CMMapP -rw-rw-rw- 1 owner group 60 Sep 3 20:00 CMMapG drwxrwxrwx 1 owner group 0 Sep 3 12:00 Program Files drwxrwxrwx 1 owner group 0 Sep 3 12:00 My Documents drwxrwxrwx 1 owner group 0 Sep 3 12:00 Temp drwxrwxrwx 1 owner group 0 Sep 3 12:00 Windows 226 Transfer complete. ftp> put whatever local: whatever remote: whatever 200 PORT command successful. 150 Opening BINARY mode data connection for \whatever. 226 Transfer complete. 6 bytes sent in 8.4e-05 secs (70 Kbytes/sec) ftp> ls 200 PORT command successful. 150 Opening ASCII mode data connection for \467456.FTP(851 bytes). drwxrwxrwx 1 owner group 0 Jan 1 1998 iPAQ File Store -rw-rw-rw- 1 owner group 76 Sep 4 7:45 467456.FTP -rw-rw-rw- 1 owner group 6 Sep 4 7:45 whatever -rw-rw-rw- 1 owner group 282 Sep 4 7:16 mdmlog0.txt -rw-rw-rw- 1 owner group 72 Sep 4 7:14 mdmlog5.txt -rw-rw-rw- 1 owner group 10500 Sep 4 7:15 GCounterFile.mmf -rw-rw-rw- 1 owner group 56 Sep 3 20:00 CMMapP -rw-rw-rw- 1 owner group 60 Sep 3 20:00 CMMapG drwxrwxrwx 1 owner group 0 Sep 3 12:00 Program Files drwxrwxrwx 1 owner group 0 Sep 3 12:00 My Documents drwxrwxrwx 1 owner group 0 Sep 3 12:00 Temp drwxrwxrwx 1 owner group 0 Sep 3 12:00 Windows 226 Transfer complete. ftp> get whatever local: whatever remote: whatever 200 PORT command successful. 150 Opening BINARY mode data connection for \whatever(6 bytes). 226 Transfer complete. 6 bytes received in 1.01 secs (0.0058 Kbytes/sec) ftp> bye 221 Goodbye |
The software that we will use to backup everything on the PocketPC iPAQ is included in the software that will be used in chapter Chapter 4 to replace the original bootloader. This software can be downloaded from:
ftp://handhelds.org/feeds/BootBlaster/BootBlaster_1.18.exe
I recommend you also download the corresponding md5sum file, so you can check BootBlaster's integrity. The md5sum can be downloaded from:
ftp://handhelds.org/feeds/BootBlaster/BootBlaster_1.18.exe.md5sum
Transfer the BootBlaster_1.18.exe file onto the iPAQ, by following the steps in Section 1.3 and Section 1.4.2.
You can check the integrity by running the following command:
bash$ md5sum -c BootBlaster_1.18.exe.md5sum BootBlaster_1.18.exe: OK |
This operation is very similar to the previous one:
Locate the BootBlaster icon (probably somewhere in "My Documents") and tap on it to launch it.
Tap on the "Save Wince .gz Format" entry. A popup window will open, asking you to confirm.
Transfer the wince_image.gz and asset_image.gz files onto the GNU/Linux host, by following the steps in Section 1.3 and Section 1.4.2.
taking control of the bootloader to send the GNU/Linux bootstrap image to the iPAQ and flash it
taking control of the GNU/Linux on the iPAQ while there is no graphical interface
On the GNU/Linux host, we will use minicom as a terminal emulator.
If you followed the chapters in this book in a logical order, you should have an automatic ppp on the GNU/Linux host, waiting for connections from the iPAQ (see Section 1.3.1.2). You must disable it before proceeding. Comment out the following line in the /etc/inittab file by putting a "#" at the beginning of the line, using you favorite text editor:
#ppp:2345:respawn:/usr/sbin/pppd call PocketPC |
You must tell the running init process to re-read its configuration by typing:
bash# init q |
The serial line is now free, so we can use the terminal emulator.
Warning |
As this operation may erase everything on your unit, be sure to have a backup as described in Chapter 2 and md5sum-verified BootBlaster_1.18.exe and bootldr-2.18.01.bin files as described in Chapter 2 and Section 4.1. Remember, THIS OPERATION IS PERFORMED AT YOUR OWN RISKS. |
ftp://handhelds.org/feeds/bootldr/bootldr-2.18.01.bin
You must download the corresponding md5sum file from:
ftp://handhelds.org/feeds/bootldr/bootldr-2.18.01.bin.md5sum
You must check the file integrity by running the following command:
bash$ md5sum -c bootldr-2.18.01.bin.md5sum bootldr-2.18.01.bin: OK |
Warning |
Not checking the bootldr's integrity may be catastrophic, as if the file is damaged, you will not be able to boot your iPAQ anymore, transforming it into a brick. |
Transfer the bootldr-2.18.01.bin file onto the iPAQ, by following the steps in Section 1.3 and Section 1.4.2.
Note: A good way to check bootldr's integrity on the iPAQ is to transfer it back onto the GNU/Linux host and check it again with md5sum.
Locate the BootBlaster icon (probably somewhere in "My Documents") and tap on it to launch it.
Tap on the "Program" entry. A warning popup window will open, asking you to confirm.
A File dialog will open, enabling you to choose the bootloader file you want to use. Select the one you downloaded in Section 4.1
A dialog will ask you to confirm the file you want to flash. Tap on "Yes" to continue.
Wait patiently. The process of flashing the new bootloader takes about 15 seconds. During this time, BootBlaster will display what it is doing:
Erasing flash... |
Protecting Wince Partitions... |
BootBlaster protects the PocketPC partitions before proceeding to bootloader flashing. It looks like PocketPC is still able to boot the machine, even if the bootloader is erased, as long as it PocketPC is not touched.
Warning |
It is not safe to erase the bootloader if GNU/Linux is installed in flash -- GNU/Linux depends on the bootloader to configure the machine before jumping into GNU/Linux. |
Up to and including this point, it is perfectly safe to reboot your iPAQ. If your machine takes more than 15 seconds to perform this operation, reboot the iPAQ by pushing the recessed reset button at the bottom right and repeat this step.
Programming Flash... |
This is the sensitive point, as during this time, your bootloader is not in a consistent state. This operation is very short, so the chance that you get a power loss while doing it is small.
Warning |
If your iPAQ hangs while programming, send e-mail to <bootldr@handhelds.org> and/or get on the IRC and ask for help. Leave the iPAQ plugged in and do not reset it. |
Once flashing has been performed, a dialog will open, stating that you have a valid OHH (Open HandHeld) Boot loader 2.18.1 in flash, and how to access the serial console. Tap on "ok" to close this dialog.
Before reseting your iPAQ, you must check that you have a valid bootloader.This is how to verify it:
Warning |
If it does not say that you have a valid bootloader, do not reset your iPAQ. Instead, try programming the flash again. If that doesn't work, program your flash with your saved bootloader. If that doesn't work, send e-mail to <bootldr@handhelds.org> and/or get on the IRC and ask for help. Leave the iPAQ plugged in and do not reset it. |
To get this serial console, configure a terminal emulator as described in Chapter 3.
Then, reboot your iPAQ by pushing the recessed reset button at the lower right of the unit while holding the center of the joypad (you will have to remove the iPAQ from its cradle to access the reset button). Put it back into the cradle and press the space bar into the terminal emulator or press the Calendar button on the iPAQ. You should get bootldr's boot prompt "boot>".
It is now safe to unprotect PocketPC, by typing the following in the terminal emulator:
boot> pflash 0x40000 0xffff 0 addr=00040000 len=0000FFFF protect=00000000 Protect=00000000 boot> |
Bootloader's installation is now complete.
ftp://handhelds.org/familiar/releases/v0.5.3/install/H3800/task-bootstrap.jffs2
In this chapter, I suppose that you have set up a terminal connection, as described in Chapter 3.
boot> partition reset argv[1]=reset defining partition: bootldr defining partition: root defining partition: asset boot> |
boot> set ymodem 1 setting param <ymodem> to value <1> boot> load root loading flash region root using ymodem ready for YMODEM transfer... |
A file selector window will open, where you need to specify the file to download. Using the arrow right key and pressing Enter, you can go to the directory containing the root image file transfered in Section 5.1. Using the arrow down key, move down to the correct file, and hit space to select the file, then press Enter.
A window will open, displaying the current transfer status. The transfer should take about 15 minutes, so be patient. When completed, a beep will awake you, so press Esc to close the window. The following lines should appear:
94208F6013CD23402361CC8905022946 task-bootstrap.jffs2 00600000 bytes loaded to C0000400 Erasing sector 00040000 Erasing sector 00080000 Erasing sector 000C0000 Erasing sector 00100000 Erasing sector 00140000 ... Erasing sector 01F40000 Erasing sector 01F80000 writing flash.. addr: 00040000 data: E0021985 addr: 00050000 data: 12512501 addr: 00060000 data: 8CF607FF ... addr: 00610000 data: C8E314FE addr: 00620000 data: 9B95ACF1 addr: 00630000 data: FFFFFFFF verifying ... formatting ... done. boot> |
This mean that the bootloader first erases the flash memory, then writes to it the downloaded image, verifies it and finally formats it correctly.
Simply issue the following command:
boot>boot |
booting jffs2... booting boot/zImage from partition >root< Scanning all of flash for your JFFS2 convenience. Est Time: 6-12 seconds! build_list: max = 01F7FFBC ... Generating SSH DSA host key (this is slow, please be patient)... Generating DSA parameter and key. Your identification has been saved in /etc/ssh/ssh_host_dsa_key. Your public key has been saved in /etc/ssh/ssh_host_dsa_key.pub. The key fingerprint is: 0f:45:15:0e:dd:b3:cf:10:a3:5e:89:27:d6:c7:f6:04 root@familiar Done. Starting OpenBSD Secure Shell server: sshd. familiar login: |
You can login as the "root" user by providing the default "rootme" password.
There are two steps involved in setting up the network:
For this step, work is needed both on the GNU/Linux host and on the iPAQ.
It is normally found as /lib/modules/kernel_version/kernel/drivers/usb.
bash$ gcc -O2 -I /usr/src/linux/include -DMODULE -D__KERNEL__ -c usbnet.c |
bash# cp build_dir/usbnet.o /lib/modules/kernel_version/kernel/drivers/usb bash# depmod -a |
bash# modprobe usbnet |
Download the following file onto your GNU/Linux host, and name it usbnet:
#!/bin/sh # chkconfig: 2 45 96 # processname: usbnet # pidfile: /var/run/usbnet.pid # lockfile: /var/lock/subsys/usbnet usage() { echo "Usage: $0 {start|stop|status}" } PC_ADDR=192.168.1.100 IPAQ_ADDR=192.168.1.101 GW_ADDR=192.168.1.100 DRIVER=usb-eth INTERFACE=usbf if [ $# -lt 1 ]; then usage break fi case "$1" in start) modprobe $DRIVER ifconfig $INTERFACE inet $IPAQ_ADDR up route add default gw $GW_ADDR ;; stop) ifconfig $INTERFACE down modprobe -r $DRIVER ;; status) ifconfig $INTERFACE ;; *) usage ;; esac |
Replace the IP addresses by the ones corresponding to your network, then transfer it using the zmodem protocol. When you have set up a terminal connection using minicom, as described in Chapter 3, issue the following commands on the iPAQ:
# cd /etc/init.d # rz .. waiting to receive.**B0100000023be50 |
This command tells the iPAQ to be ready to receive the package using the zmodem protocol. You just have to feed it from the running minicom window, by pressing Ctrl-A and S. A small popup window will appear, allowing you to choose the transfer protocol. Using the arrow down key, move down to the "zmodem" entry and press Enter.
A file selector window will open, where you need to specify the file to download. Using the arrow right key and pressing Enter, you can go to the directory containing the usbnet file. Using the arrow down key, move down to the correct file, and hit space to select the file, then press Enter.
A window will open, and minicom will beep. Press Esc to close the window. Press Enter to get back the shell prompt.
Make this script executable by issuing:
# chmod +x /etc/init.d/usbnet |
Based on this file, we will create the necessary setup needed to launch USB networking automatically when you boot, so we have to create a symbolic link to this script into the /etc/rc2.d directory, which is the directory containing the scripts to launch when you go into runlevel 2 (the normal runlevel):
# cd /etc/rc2.d # ln -s ../init.d/usbnet S45usbnet.sh |
For this first time, we can just launch it manually by typing:
# /etc/init.d/usbnet start SA1100 USB Controller Core Initialized usbctl: Opened for usb-eth usbctl: Started for usb-eth |
We also need to create the files required to stop/start the USB network when going into suspend/resume mode. Using the previous script, they are easy to create:
# cat >/etc/suspend-scripts/S33usbnet #!/bin/sh /etc/init.d/usbnet stop Ctrl-D # cat >/etc/resume-scripts/R33usbnet #!/bin/sh /etc/init.d/usbnet start Ctrl-D # chmod +x /etc/*scripts/*usbnet |
If you have not already done it, insert the usbnet module on the GNU/Linux host:
bash# modprobe usbnet |
usbctl: zombie suspended --> [resume] --> zombie. Device in powered state. usbctl: zombie --> [reset] --> default. Device in default state. usbctl: Resetting usbctl: default --> [address assigned] --> address. Device in address state. usbep0: I have been assigned address: 14 usbctl: address --> [configure] --> configured. Device in configured state. usbep0: Configured (OMP=00000040 IMP=00000040) usbep0: fixme: set interface not supported |
# ifconfig lo Link encap:Local Loopback inet addr:127.0.0.1 Mask:255.0.0.0 UP LOOPBACK RUNNING MTU:16436 Metric:1 RX packets:8 errors:0 dropped:0 overruns:0 frame:0 TX packets:8 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:728 (728.0 b) TX bytes:728 (728.0 b) usbf Link encap:Ethernet HWaddr 9A:4D:0E:33:E7:01 inet addr:192.168.1.101 Mask:255.255.255.0 UP RUNNING MTU:1500 Metric:1 RX packets:4 errors:0 dropped:0 overruns:0 frame:0 TX packets:4 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:100 RX bytes:224 (224.0 b) TX bytes:280 (280.0 b) |
This last paragraph provides the necessary information about the USB network interface.
#!/bin/bash # # ipaqnet Control script for iPAQ USBNet connection # # Author: Michel Stempin # Creation: 11/08/2002 PC_ADDR=192.168.1.100 IPAQ_ADDR=192.168.1.101/32 IPAQ_NET=192.168.1.0/24 UPLINK_IF=ppp0 start() { modprobe usbnet ifconfig usb0 inet $PC_ADDR up if [ $? -ne 0 ]; then exit 1 fi echo "1" >/proc/sys/net/ipv4/conf/usb0/proxy_arp UPLINK=`ifconfig $UPLINK_IF >/dev/null 2>&1` if [ $? -ne 0 ]; then exit 1 fi echo "1" >/proc/sys/net/ipv4/conf/$UPLINK_IF/proxy_arp echo "1" >/proc/sys/net/ipv4/ip_forward ip route del $IPAQ_NET dev usb0 ip route add $IPAQ_ADDR dev usb0 } stop() { ifconfig usb0 down rmmod -r usbnet } case "$1" in start|add) start ;; stop|remove) stop ;; *) echo $"Usage: $0 {start|stop|add|remove}" exit 1 esac |
Make this script executable by typing:
bash# chmod +x path_to_ipaqnet/ipaqnet |
We should now be able to launch the connection by typing:
bash# path_to_ipaqnet/ipaqnet start |
This script uses the proxy_arp mechanism introduced above to forward data to the iPAQ.
On the GNU/Linux host, you can check that everything is working by issuing the following command:
# ifconfig lo Link encap:Local loopback inet addr:127.0.0.1 Mask:255.0.0.0 UP LOOPBACK RUNNING MTU:16436 Metric:1 RX packets:14 errors:0 dropped:0 overruns:0 frame:0 TX packets:14 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 lg file transmission:0 RX bytes:748 (748.0 b) TX bytes:748 (748.0 b) ... usb0 Link encap:Ethernet HWaddr C0:E3:56:1A:B8:CD inet addr:192.168.1.100 Bcast:192.168.1.255 Mask:255.255.255.0 UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:0 errors:0 dropped:0 overruns:0 frame:0 TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 lg file transmission:100 RX bytes:0 (0.0 b) TX bytes:0 (0.0 b) |
Again, this last paragraph provides the necessary information about the USB network interface.
# iptables config file used by /etc/init.d/iptables # Authors: Benoit PAPILLAULT & Philippe LUCAS # Creation: 11/07/2002 # Modified by Michel STEMPIN for USB network # default policy are not reset before executing lines in this file # by default a packet goes either to INPUT chain or FORWARD chain # *filter # INPUT chain -P INPUT DROP -A INPUT -i lo -j ACCEPT -A INPUT -i usb0 -j ACCEPT -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT # # list of port that are allowed by default -A INPUT -p tcp -m tcp --dport 22 -j ACCEPT -A INPUT -p tcp -m tcp --dport 80 -j ACCEPT # # send all other packets to syslog -A INPUT -j LOG --log-prefix "FIREWALL " # # FORWARD chain -P FORWARD DROP -A FORWARD -i usb0 -j ACCEPT -A FORWARD -m state --state ESTABLISHED,RELATED -j ACCEPT # # OUTPUT chain -P OUTPUT ACCEPT COMMIT # *nat # PREROUTING chain -P PREROUTING ACCEPT # # POSTROUTING chain -P POSTROUTING ACCEPT -A POSTROUTING -o lo -j ACCEPT -A POSTROUTING -o usb0 -j ACCEPT # the SNAT line will be added by the right pppd # (the one connected to the Internet) -A POSTROUTING -s 192.168.1.0/24 -d ! 192.168.1.0/24 -j MASQUERADE # # OUTPUT chain -P OUTPUT ACCEPT COMMIT |
You may have to adapt this simple script to your needs, as a firewall configuration is based on rule chains that are processed in order. The general idea is to allow traffic between the iPAQ and the GNU/Linux host, to forward traffic from the iPAQ to the external world, translating its address to appear to be the host's address. For more information, I suggest you read the Firewall and Proxy Server HOWTO and the Linux IP Masquerade HOWTO.
Warning |
This firewall configuration is very basic and does not provide a bulletproof (although reasonable) setup for your machine. You should really consider writing your own, based on your particular needs. |
On the RedHat distribution, You will need to restart the firewall by typing:
# service iptables restart |
For other distributions, this is probably something close to:
# /etc/rc.d/init.d/iptables restart |
When everything is fine, you should be able to "ping" the iPAQ from the GNU/Linux host, and the other way around. On the GNU/Linux host (press Ctrl-C to stop):
bash# ping 192.168.1.101 PING 192.168.1.101 (192.168.1.101) from 192.168.1.100 : 56(84) bytes of data. 64 bytes from 192.168.1.101: icmp_seq=0 ttl=255 time=2.187 msec 64 bytes from 192.168.1.101: icmp_seq=1 ttl=255 time=1.422 msec 64 bytes from 192.168.1.101: icmp_seq=2 ttl=255 time=1.236 msec 64 bytes from 192.168.1.101: icmp_seq=3 ttl=255 time=1.050 msec --- 192.168.1.101 ping statistics --- 4 packets transmitted, 4 packets received, 0% packet loss round-trip min/avg/max/mdev = 1.050/1.473/2.187/0.434 ms |
On the iPAQ:
# ping 192.168.1.100 PING 192.168.1.100 (192.168.1.100): 56 data bytes 64 bytes from 192.168.1.100: icmp_seq=0 ttl=255 time=1.6 ms 64 bytes from 192.168.1.100: icmp_seq=1 ttl=255 time=0.8 ms 64 bytes from 192.168.1.100: icmp_seq=2 ttl=255 time=1.5 ms --- 192.168.1.100 ping statistics --- 3 packets transmitted, 3 packets received, 0% packet loss round-trip min/avg/max = 0.8/1.3/1.6 ms |
One last thing to do is to declare your DNS (Domain Name Servers) on the iPAQ. The best way is probably to copy or mimic the /etc/resolv.conf file from your GNU/Linux host machine. I suggest to enter it on the iPAQ with:
# echo "nameserver first_name_server" >> /etc/resolv.conf # echo "nameserver second_name_server" >> /etc/resolv.conf |
You should now be able to "ping" by its name any machine on the Internet that you know is responding to such requests.
If you are able to "ping" the GNU/Linux host, but not the rest of the world, this may be due to the ip_forward mechanism not being enabled. Try re-inserting the iPAQ or re-launch the ipaqnet script.
Whenever you want to stop the USB network, on the iPAQ issue:
# /etc/init.d/usbnet stop |
# path_to_ipaqnet/ipaqnet stop |
if [ "$*" = "usb" ]; then if [ "$PRODUCT" = "49f/505a/0" ]; then path_to_ipaqnet/ipaqnet $ACTION exit fi fi |
This way, the USB network will be correctly brought up/shut down when you plug/unplug the iPAQ.
In this chapter, we will install the Familiar GNU/Linux distribution onto the iPAQ.
Provided that the iPAQ is able to access the Internet as described in Chapter 6, it is quite easy, as the Familiar GNU/Linux distribution is made up of packages that can be downloaded and installed directly.
The first thing will be to update the package definitions to match the latest packages available.
We will then run SSH to definitively get rid of the serial terminal and work at full speed using USB.
I assume you still have the terminal emulation running, as described in Chapter 3, and that USB networking is working, as described in Chapter 6. In order to update the packages definitions, just issue the following command on the iPAQ:
# ipkg update Downloading http://familiar.handhelds.org/familiar/feeds/unstable/packages/armv 4--14:14:56-- http://familiar.handhelds.org:80/familiar/feeds/unstable/package s/ => `//tmp/ipkg/Packages' Connecting to familiar.handhelds.org:80... connected! HTTP request sent, awaiting response... 200 OK Length: 212,734 [text/plain] 0K -> .......... .......... .......... .......... .......... [ 24%] 50K -> .......... .......... .......... .......... .......... [ 48%] 100K -> .......... .......... .......... .......... .......... [ 72%] 150K -> .......... .......... .......... .......... .......... [ 96%] 200K -> ....... [100%] 14:15:00 (59.24 KB/s) - `//tmp/ipkg/Packages' saved [212734/212734] Done. Updated list of available packages in /usr/lib/ipkg/lists/familiar-unstable |
Then, upgrade the installed packages to their latest version:
# ipkg upgrade ... N or O : keep your currently-installed version D : show the differences between the versions (if diff is installed) The default action is to keep your current version. *** wlan.opts (Y/I/N/O/D) [default=N] ? y Configuring pcmcia-cs...Done Package mount (2.11h-1-fam1) installed in root is up to date Package shellutils (2.0.11-5) installed in root is up to date Package wvlan-modules-2.4.18-rmk3 (hh12) installed in root is up to date Package libncurses5 (5.0-6.0potato1) installed in root is up to date Package tar (1.13.19-1) installed in root is up to date Package setserial (2.17-20) installed in root is up to date Package orinoco-modules-2.4.18-rmk3 (hh12) installed in root is up to date |
You may have to enter Y a couple of time to accept modifying some existing files.
One of the first useful package to install is the familiar-postint package, that will provide clock synchronization using the ntpdate command:
# ipkg install familiar-postinst ... Unpacking familiar-postinst...Done. Configuring familiar-postinst...Done. # cd # ./postinst ... Familiar post-installation completed successfully. |
bash# ssh 192.168.1.101 |
bash# ssh ipaq |
if you still have the name definition set up in Section 1.1.2. The first time you use it, ssh will ask you if you want to save the new key: answer yes, then provide the default "rootme" password.
When you want to transfer files, you can issue an scp command from the iPAQ to the GNU/Linux host (or the other way around). One useful file to download will be the /etc/localtime from your GNU/Linux host:
# scp 192.168.1.100:/etc/localtime /etc/localtime |
This should update the iPAQ's time to the correct timezone for you.
In this chapter, we will install the Opie environment onto the iPAQ.
Provided that the iPAQ is able to access the Internet as described in Chapter 6, it is quite easy, as Opie is made up of packages that can be downloaded and installed directly.
We need first to declare the Opie feed to the ipkg installer. This is done by typing:
# echo "src opie http://131.152.105.154/feeds/ipaq/unstable" >> /etc/ipkg.conf |
Update the package definitions by typing:
# ipkg update Downloading http://familiar.handhelds.org/familiar/releases/v0.5.3/packages/armv4l/Packages ... Updated list of available packages in /usr/lib/ipkg/lists/opie |
Install the task-opie meta-package by typing:
# ipkg -force-depends install task-opie |
For the iPAQ 38xx, we have to install a package fixing the screen rotation problem:
# ipkg install qt-embedded-rotation |
The only thing left to do is to launch Opie:
# /etc/init.d/opie start |
Opie should now be running. I can't resist to show you how it looks:
Use the task-opie-xxx meta-package to install a group of application at once.
# echo "src konqueror http://bolug.uni-bonn.de/files/konq-e" >> /etc/ipkg.conf |
Update the package definitions by typing:
# ipkg update Downloading http://familiar.handhelds.org/familiar/releases/v0.5.3/packages/armv4l/Packages ... Updated list of available packages in /usr/lib/ipkg/lists/konqueror |
Install the konqueror package by typing:
# ipkg install konqueror |
This chapter is provided in case you are not satisfied with GNU/Linux on your iPAQ, or are forced to switch back to the original operating system. The steps of restoring the original PocketPC and bootloader images saved in Chapter 2 are covered here.
First, make sure you have set up a terminal connection, as described in Chapter 3.
You need to reboot the iPAQ. If you have GNU/Linux running on it, this can be achieved by typing:
# shutdown -r now |
Another alternative is to push the recessed button at the lower right of the unit with a sharp object.
Warning |
Make sure you have bootldr 2.18.01 or higher installed on the iPAQ before proceeding with the following instructions. Compaq/HP Cambridge Research Labs will fix any units that fail to restore properly, but this should be seen as a last resort solution. |
When the bootldr screen appears, press on the "Calendar" button at the lower left corner of the unit to get a serial bootloader console. At the boot prompt, type:
boot> set ymodem 1 boot> load root loading flash region root using ymodem ready for YMODEM transfer... |
This command tells the iPAQ to be ready to receive the root image using the xmodem protocol. You just have to feed it from the running minicom window, by pressing Ctrl-A and S. A small popup window will appear, allowing you to choose the transfer protocol. Using the arrow down key, move down to the "ymodem" entry and press Enter.
A file selector window will open, where you need to specify the file to download. Using the arrow right key and pressing Enter, you can go to the directory containing the wince_image.gz you created in Chapter 2. Using the arrow down key, move down to the correct file, and hit space to select the file, then press Enter.
A window will open, displaying the current transfer status. The transfer should take about 20 minutes (yes, it is much larger than GNU/Linux), so be patient. When completed, a beep will awake you, so press Esc to close the window. The following lines should appear:
Looks like a gzipped image, let's verify it... Verifying gzipped image ......................................; programming flash...erasing ... Erasing sector 00040000 Erasing sector 00080000 Erasing sector 000C0000 ... Erasing sector 01F80000 writing flash.. addr: 00040000 data: EA0003FE addr: 00050000 data: 0F6A0F6A addr: 00060000 data: 11A0F003 ... addr: 01FA0000 data: FFFFFFFF addr: 01FB0000 data: FFFFFFFF verifying ... calculated crc32 = 0x282F31FE desired crc32 = 0x282F31FE formatting ... done. boot> |
You can now boot PocketPC by typing:
boot> boot wince booting wince... Disabling LCD controller |
The iPAQ will boot PocketPC automatically, unless you hold the center of the joypad while pushing the recessed reset button.
You will need to use the same terminal emulation setup described in Chapter 3, then reboot the iPAQ as in Section 9.1. At the boot prompt, type:
boot> load bootldr |
Use the same procedure as in Section 9.1 to transfer the saved_bootldr.bin you saved in Chapter 2.
Copyright (C) 200 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.
The Free Software Foundation may publish new, revised versions of the GNU Free Documentation License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. See http://www.gnu.org/copyleft/.
Each version of the License is given a distinguishing version number. If the Document specifies that a particular numbered version of this License "or any later version" applies to it, you have the option of following the terms and conditions either of that specified version or of any later version that has been published (not as a draft) by the Free Software Foundation. If the Document does not specify a version number of this License, you may choose any version ever published (not as a draft) by the Free Software Foundation.
Copyright (c) YEAR YOUR NAME. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or any later version published by the Free Software Foundation; with the Invariant Sections being LIST THEIR TITLES, with the Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST. A copy of the license is included in the section entitled "GNU Free Documentation License".
If you have no Invariant Sections, write "with no Invariant Sections" instead of saying which ones are invariant. If you have no Front-Cover Texts, write "no Front-Cover Texts" instead of "Front-Cover Texts being LIST"; likewise for Back-Cover Texts.
If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, to permit their use in free software.