blob: b7c1e8e903f15a585a5c8c114e9ed953dde37058 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#!/bin/sh
cd $(dirname $(readlink -f $0))
if [ ! -e Makefile ] ;then
echo "ImageBuilder not checked out yet"
echo "try running ../prepare $$PROFILE"
exit 1
fi
echo
if [ -e ./custom_make ];then
echo "Starting Custom Make"
sh ./custom_make
else
echo "No Custom Make Script exists, bailing out!"
exit 1
fi
echo
cat << EOF
finished building
You can use the following images:
Factory : $PWD/bin/ar71xx/openwrt-ar71xx-generic-tl-wr703n-v1-squashfs-factory.bin
System Upgrade: $PWD/bin/ar71xx/openwrt-ar71xx-generic-tl-wr703n-v1-squashfs-sysupgrade.bin
EOF
|