1
0
mirror of git://projects.qi-hardware.com/wernermisc.git synced 2024-11-15 13:18:27 +02:00
wernermisc/bin/nnui
Werner Almesberger 3b2b9166d9 mknnk, nnui: kernel build scripts
- mknnk: invoke "make" for making a NanoNote kernel
- nnui: make an uImage for the NanoNote
2011-03-25 20:19:51 -03:00

9 lines
320 B
Bash
Executable File

#!/bin/sh -ex
PATH=$PATH:../u-boot/tools
mknnk -j4 vmlinux.bin
gzip -9 -f arch/mips/boot/vmlinux.bin
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