3 . ../crosstool/cross-var
5 LKERN=../kernel/dongle/linux-2.4.31
6 LGENFS=genext2fs-1.4/genext2fs
9 # Create initial file system
12 cp -a ../busybox/dongle/install fs
17 cp -fv ../client/vompclient fs
18 cp -fv ../client/other/vdr.jpg fs
19 cp -fv ../client/other/wallpaperNTSC.jpg fs
20 cp -fv ../client/other/wallpaperPAL.jpg fs
21 cp -fv ../lbox_border/lbox_border.o fs/lib/modules/2.4.31
23 # Get kernel files temp dir ready
26 BOOT=${LKERN}/arch/ppc/boot
27 CFILES=${BOOT}/common/{dummy,misc-common,ns16550,relocate,string,util,serial_stub}.o
28 SFILES=${BOOT}/simple/{embed_config,head,misc-embedded}.o
29 KFILE=${BOOT}/images/vmlinux.gz
30 FILES=`sh -c "echo $CFILES $SFILES $KFILE ${BOOT}/lib/zlib.a ${BOOT}/ld.script"`
33 # Check filesystem size
35 RAMDISK_SIZE=`du -ks fs | cut -f 1`
36 let RAMDISK_SIZE=$RAMDISK_SIZE+300
37 if [ $RAMDISK_SIZE -gt 4096 ] ; then
38 echo "ramdisk too big"
42 # Create the ramdisk out of the fs directory
44 ${LGENFS} -d fs -b ${RAMDISK_SIZE} -D devtable ramdisk
51 # make_dongle() - this is straight out of arch/ppc in the linux tree
53 OBJCOPY=${CROSS}objcopy
56 $OBJCOPY -O elf32-powerpc \
57 --add-section=.ramdisk=ramdisk.gz \
58 --set-section-flags=.ramdisk=contents,alloc,load,readonly,data \
59 --add-section=.image=kernel_temp/vmlinux.gz \
60 --set-section-flags=.image=contents,alloc,load,readonly,data \
61 kernel_temp/dummy.o build_temp/image.o
63 $LD -T kernel_temp/ld.script -Ttext 0x00400000 -Bstatic -o build_temp/zvmlinux.initrd \
64 kernel_temp/head.o kernel_temp/relocate.o kernel_temp/misc-embedded.o \
65 kernel_temp/misc-common.o kernel_temp/string.o kernel_temp/util.o kernel_temp/serial_stub.o \
66 kernel_temp/embed_config.o kernel_temp/ns16550.o build_temp/image.o \
69 $OBJCOPY -O elf32-powerpc build_temp/zvmlinux.initrd build_temp/zvmlinux.initrd \
70 -R .comment -R .stab -R .stabstr -R .sysmap
72 ${LKERN}/arch/ppc/boot/utils/mktree build_temp/zvmlinux.initrd $OUTFILE
81 # Install to tftp location
83 if [ -d /diskless/tftp/mvp ] && [ -w /diskless/tftp/mvp ]
85 cp -v $OUTFILE /diskless/tftp/mvp
88 if [ -d /diskless/tftp/wmvp ] && [ -w /diskless/tftp/wmvp ]
90 cp -v $OUTFILE /diskless/tftp/wmvp