#!/bin/sh
# Script to demonstrate building "Hello, world" for Linksys WRT-54G
set -x

target=mipsel-unknown-linux-gnu
toolcombo=gcc-3.2.3-glibc-2.2.3
PATH=/opt/crosstool/$target/$toolcombo/bin:$PATH

$target-gcc hello.c -o hello

cd wrt54g
cp ../hello .
sh wrt54g_put.sh hello

