· visions of pyneo · endusers how to start · developer information ·
|
|
pyneo & Debian goes Nano-NoteInstalling Debian on the Nano-NotePrepare Host SystemYou have to install the tool "usbboot" to flash the Nano-Note: wget http://projects.qi-hardware.com/media/upload/xburst-tools/files/xburst-tools_0.0+201002-1_i386.deb dpkg -i xburst-tools_0.0+201002-1_i386.deb Download what you needYou need an u-boot, kernel and rootfs. Use my kernel because the openwrt kernel is missing some options (inotify, fpu-emu, no splash, full size root partition). Use the official u-boot for the Nano-Note Ben with lb60-board, mine is made for the avt2-board. wget http://downloads.qi-hardware.com/software/images/Ben_NanoNote_2GB_NAND/latest/openwrt-xburst-u-boot.bin wget http://pyneo.org/downloads/nano/openwrt-xburst-qi_lb60-uImage.bin # and one of wget http://pyneo.org/downloads/nano/debian-lenny-mini.ubi wget http://pyneo.org/downloads/nano/debian-lenny.ubi There are some advantages in mine avt2-u-boot (kernel logging to tty1, usb-ether-mac address constant), you can get it from: wget http://pyneo.org/downloads/nano/openwrt-xburst-u-boot.bin Prepare the Nano-NotePut the Nano into usb-boot-mode (see here for instructions how to do that). I encoutered lots of problems with nand so I do a nand full erase before any operation: usbboot -c "boot" sed -i 's/NAND_FORCEERASE = .*/NAND_FORCEERASE = 1/' /etc/xburst-tools/usbboot.cfg usbboot -c "nerase 0 4096 0 0" Hints for flashing:
I hope qi-hardware or sharism will come up with a solution of a more reliable flashing instead of this set of esoteric hints that changed the behaviour of usbboot for me. Flash!Flashing is straight forward: usbboot -c "boot" usbboot -c "nprog 0 openwrt-xburst-u-boot.bin 0 0 -n" usbboot -c "nprog 1024 openwrt-xburst-qi_lb60-uImage.bin 0 0 -n" usbboot -c "nprog 2048 debian-lenny.ubi 0 0 -n" You can also just flash the rootfs but i encountered another problem with the dedicated erase - sometimes it also trashed kernel and/or u-boot. The commands would be usbboot -c "boot" usbboot -c "nerase 16 4079 0 0" usbboot -c "nprog 2048 debian-lenny.ubi 0 0 -n" Again if you see strange messages do a full erase as described above. Reboot.10 sec later... Using Debian on the Nano-NoteConsoleYou may use your Nano-Note via console & keyboard. The keyboard is tiny but it has all keys that were needed to use a Unix-like system. In the setup tty1 (the active console after boot) is dedicated to logging and does not show a login. Activate the second console (Alt-F2 or Alt-Right) to get a login prompt. The root-user has an empty password, a user named "user" is dedecated for running programs non-root. If you are fed up with the keyboard you may step over to the next chapter. NetworkYour nano will get the ip 192.168.0.204 and expects your host to be a dns and gateway into the internet with ip 192.168.0.197 (See networked concept here). ssh is listening and the root-pwd is empty. It will start X via nodm under user "user" and a rxvt inside (which doesn't help you much because the keymappings are missing). Also pyneod and gsm-muxer are running already which could lead to memory problems on a lb60-board. The commands to setup the host network would be (assuming networkinterface usb0): ifconfig usb0 192.168.0.197 up route add 192.168.0.204 usb0 echo 1 > /proc/sys/net/ipv4/ip_forward iptables -t nat -A POSTROUTING -j MASQUERADE Building / CompilingIf you need a package that is not build for your platform you can now do: apt-get install build-essential debhelper cdbs python-dev libgwenhywfar47-dev libaqbanking29-dev dget --build -u http://mister-muffin.de/pyneo/deb-sources/pyneo-pybankd_1.26-1.dsc dpkg -i pyneo-pybankd_1.26-1_mipsel.deb If you ever do a `du` and a `df -sch /` and compare the numbers you will see a huge difference (du is 50% of df here). Don't be scared, this is ubifs's on-the-fly compression feature. EndingTry to shutdown the Nano orderly always. Ubifs has no fsck or the like to repair a corrupted filesystem. So always issue an `halt` or `shutdown` when done. |