
To build the linux kernel, extract the archive, and cd
into linux-2.6.15, then run the following commands:

export PATH="/path/to/mips-linux-uclibc/bin:${PATH}"
mkdir build-dir
cd build-dir
cp ../.config .
mkdir -p include/linux
cp ../include/linux/autoconf.h include/linux
make -C .. O="$(pwd)"
make -C .. O="$(pwd)" INSTALL_MOD_PATH="$(pwd)/modules" modules_install
mips-linux-uclibc-objcopy -O binary vmlinux vmlinuz

The resulting kernel is the file vmlinuz, to be found in
the directory build-dir. The modules will be found in the
modules/ sub-directory.
