I am trying to build a clean image to experiment with. The first thing I want to do is build a plain image.
Downloaded OpenWrt-SDK-Linux-i686-1.tar.bz2 and uncompressed with:
tar jxf OpenWrt-SDK-Linux-i686-1.tar.bz2
Opened README.SDK and got this:
This is the OpenWrt SDK. It contains a stripped-down version of
the buildroot. You can use it to test/develop packages without
having to compile your own toolchain or any of the libraries
included with OpenWrt.
To use it, just put your buildroot-compatible package directory
in the subdir 'package/' and run 'make' from this directory.
Entered 'make' as per directions and got this:
$ make
(cd /src/OpenWRT/RC5/Openwrt_5/bin/packages; \
/src/OpenWRT/RC5/Openwrt_5/staging_dir_mipsel/usr/bin/ipkg-make-index . > Packages \ )
/bin/bash: line 1: cd: /src/OpenWRT/RC5/Openwrt_5/bin/packages: No such file or directory
Then I did :
$ mkdir bin
$ mkdir bin/packages
$ make
And got this:
(cd /src/OpenWRT/RC5/Openwrt_5/bin/packages; \
/src/OpenWRT/RC5/Openwrt_5/staging_dir_mipsel/usr/bin/ipkg-make-index . > Packages \ )
Thats all I get.
The directions don't seem to work! What now?? Any help?