1
0
mirror of git://projects.qi-hardware.com/ben-wpan.git synced 2024-09-30 00:58:32 +03:00

install/: kernel and system utilities build instructions (preliminary)

This commit is contained in:
Werner Almesberger 2011-03-29 07:51:07 -03:00
parent 74706cfae8
commit fb5bb5a6fa
4 changed files with 1512 additions and 0 deletions

86
install/README-Ben Normal file
View File

@ -0,0 +1,86 @@
1. Obtain u-boot's mkimage
wget ftp://ftp.denx.de/pub/u-boot/u-boot-2009.11.tar.bz2
tar xfj u-boot-2009.11.tar.bz2
cd u-boot-2009.11
touch include/config.{h,mk}
make SUBDIRS=tools BIN_FILES-y=mkimage tools
cp tools/mkimage /usr/local/bin
cd ..
2. Build the kernel
git clone git://projects.qi-hardware.com/qi-kernel.git
cd qi-kernel
git checkout ben-wpan
cp ../ben-wpan-config-2.6.38 .config
patch -p0 -s <../openwrt-preinit-hack.patch
OWRT make ARCH=mips CROSS_COMPILE=mipsel-openwrt-linux- vmlinux.bin
Jlime make ARCH=mips CROSS_COMPILE=mipsel-linux- vmlinux.bin
../u-boot/tools/mkimage -A mips -O linux -T kernel -a 0x80010000 \
-C gzip -e 0x`mipsel-openwrt-linux-nm vmlinux | \
grep " kernel_entry" | cut -f1 -d ' '` \
-n 'Ben NanoNote Linux Kernel' \
-d arch/mips/boot/vmlinux.bin.gz uImage
cd ..
3. Install the kernel
Using usbboot:
- remove battery and USB
- wait 15 seconds
- press the "U" key on the Ben
- insert USB while keeping "U" pressed
- release the "U" key
- on the host, run
usbboot -c "boot;nprog 1024 qi-kernel/uImage 0 0 -n"
- disconnect USB
- wait 15 seconds
- connect USB again
Using nandwrite:
- set up TCP/IP networking with the Ben
- get the Ben's IPv4 address:
NN=`ifconfig usb0 |
sed '/.*inet addr:\([^ ]*\).*/{s//\1/;s/100$/101/;s/200$/202/;p;};d'`
- copy the kernel:
scp qi-kernel/uImage $NN:
- flash the kernel, clean up, and reboot:
ssh $NN 'PATH=$PATH:/usr/sbin;
flash_eraseall /dev/mtd1 && nandwrite -p /dev/mtd1 uImage &&
rm -f uImage && sync && sleep 1 && sync && sleep 1 &&
/sbin/reboot -f'
4. Set up the user space on the Ben
OWRT? opkg install ip
OWRT opkg install ldconfig
OWRT? mkdir -p /usr/local/var/run
5. Build libnl-1 for cross-development and install the run-time library
wget http://www.infradead.org/~tgr/libnl/files/libnl-1.1.tar.gz
tar xfz libnl-1.1.tar.gz
cd libnl-1.1
OWRT gcc=`readlink \`which mipsel-openwrt-linux-gcc\``
OWRT ./configure --prefix=${gcc%/bin/*} --host=mipsel-openwrt-linux
Jlime ???
make
make install
scp lib/libnl.so.1.1 $NN:/usr/lib
ssh $NN /sbin/ldconfig
cd ..
6. Build the user space tools of the linux-zigbee project
wget http://ufpr.dl.sourceforge.net/project/linux-zigbee/linux-zigbee-sources/0.2.2/lowpan-tools-0.2.2.tar.gz
tar xfz lowpan-tools-0.2.2.tar.gz
cd lowpan-tools-0.2.2
OWRT ./configure --host=mipsel-openwrt-linux
JLime ./configure --host=mipsel-linux
make
scp src/iz src/izcoordinator src/izchat $NN:/usr/sbin/

23
install/README-PC Normal file
View File

@ -0,0 +1,23 @@
1. Build the kernel
git clone git://projects.qi-hardware.com/qi-kernel.git
...
... enable CONFIG_IEEE802154, CONFIG_MAC802154,
... CONFIG_IEEE802154_DRIVERS, ...
... also enable IPv6
...
2. Set up the user space
# iproute - probably already installed
aptiude install libnl1
mkdir -p /usr/local/var/run
3. Build the user space tools of the linux-zigbee project
wget http://ufpr.dl.sourceforge.net/project/linux-zigbee/linux-zigbee-sources/0.2.2/lowpan-tools-0.2.2.tar.gz
tar xfz lowpan-tools-0.2.2.tar.gz
cd lowpan-tools-0.2.2
./configure
make
make install

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,12 @@
diff --git qi-kernel.orig/init/main.c qi-kernel/init/main.c
index 33c37c3..7be645f 100644
--- a/init/main.c
+++ b/init/main.c
@@ -852,6 +852,7 @@ static noinline int init_post(void)
printk(KERN_WARNING "Failed to execute %s. Attempting "
"defaults...\n", execute_command);
}
+ run_init_process("/etc/preinit");
run_init_process("/sbin/init");
run_init_process("/etc/init");
run_init_process("/bin/init");