Coolstream Build

renwich

Registered
Messages
19
I tried the following from the tutorial

Downloaded stinky linux dev box by Bofh

cd coolstream

git clone git://gitorious.org/neutrino-hd/buildsystem-cs.git cs-neutrino

cd cs-neutrino

mkdir download

make preqs
make crosstool
make bootstrap
make gdb
make gdb-remote
make neutrino
make skeleton
make rootfs

all files are now located in build_tmp

to finish and build the flashable image

mkfs.jffs2 -r build_tmp/rootfs -e 128KiB -o mtd2.img


But I only get a 14meg image , it seems to be missing zapit, busybox and loads of other binaries, any ideas..??
 

Partybuster

Registered
Messages
53
looks like you still have to add those things to it, but do not really know how. Would love to see a tutorial to make a complete image in english. All I have found so far is info in german and that does not help me much unfortunately.
 

renwich

Registered
Messages
19
the bits in red I've been informed where what I was missing

cd coolstream

git clone git://gitorious.org/neutrino-hd/buildsystem-cs.git cs-neutrino

cd cs-neutrino

mkdir download

make preqs
make crosstool
make bootstrap
make gdb
make gdb-remote
make neutrino
make cskernel
make openssl
make rsync
make procps
make busybox
make strace
make e2fsprogs
make autofs
make samba
make hotplug


make skeleton
make rootfs
make system-tools-all

mkfs.jffs2 -p -e 128KiB -r build_tmp/rootfs -o mtd2.img
 
Top