2014-12-03 00:31:57 +01:00
#!/bin/bash
2015-05-26 01:50:07 +02:00
set -e
2014-12-03 00:31:57 +01:00
absolutize ( )
{
if [ ! -d " $1 " ] ; then
echo
echo " ERROR: ' $1 ' doesn't exist or not a directory! "
2015-05-26 01:50:07 +02:00
kill -INT $$
2014-12-03 00:31:57 +01:00
fi
pushd " $1 " >/dev/null
echo ` pwd `
popd >/dev/null
}
2016-07-25 14:17:08 +02:00
TARGET_ARCHITECTURE = $1
TARGET_VARIANT = $2
TARGET_DEVICE = $3
2015-05-26 01:50:07 +02:00
2014-12-03 00:31:57 +01:00
BUILD = ` dirname " $0 " ` "/build/"
BUILD = ` absolutize $BUILD `
2016-03-17 15:22:22 +01:00
2016-07-25 14:17:08 +02:00
###
### chose a release
###
2018-06-25 10:11:59 +02:00
RELEASE = "17.01.4"
2016-07-25 14:17:08 +02:00
2018-06-25 10:40:38 +02:00
IMGBUILDER_NAME = " lede-imagebuilder- ${ RELEASE } - ${ TARGET_ARCHITECTURE } - ${ TARGET_VARIANT } .Linux-x86_64 "
2016-07-25 14:17:08 +02:00
IMGBUILDER_DIR = " ${ BUILD } / ${ IMGBUILDER_NAME } "
2016-12-12 18:39:04 +01:00
IMGBUILDER_ARCHIVE = " ${ IMGBUILDER_NAME } .tar.xz "
2016-07-25 14:17:08 +02:00
2018-06-26 23:25:24 +02:00
IMGTEMPDIR = " ${ BUILD } /image-extras "
2016-12-12 18:39:04 +01:00
#https://downloads.lede-project.org/snapshots/targets/ar71xx/generic/lede-imagebuilder-ar71xx-generic.Linux-x86_64.tar.xz
#https://downloads.lede-project.org/snapshots/targets/ar71xx/generic/lede-imagebuilder-ar71xx-generic.Linux-x86_64.tar.xz
2018-06-25 10:39:28 +02:00
IMGBUILDERURL = " https://downloads.openwrt.org/releases/ ${ RELEASE } /targets/ ${ TARGET_ARCHITECTURE } / ${ TARGET_VARIANT } / ${ IMGBUILDER_ARCHIVE } "
2016-07-25 14:17:08 +02:00
if [ -z ${ TARGET_DEVICE } ] ; then
echo " Usage: $0 architecture variant device-profile "
2016-12-12 18:39:04 +01:00
echo " e.g.: $0 ar71xx generic tl-wr1043nd-v2 "
echo " $0 ramips mt7621 zbt-wg3526 "
2018-07-18 10:16:39 +02:00
echo " $0 bcm53xx generic dlink-dir-885l "
echo " (this last one will not work without editing build.sh, details: https://github.com/attila-lendvai/openwrt-auto-extroot/pull/15#issuecomment-405847440)"
2016-07-25 14:17:08 +02:00
echo " to get a list of supported devices issue a 'make info' in the OpenWRT image builder directory:"
echo " ' ${ IMGBUILDER_DIR } ' "
kill -INT $$
fi
2014-12-03 00:31:57 +01:00
2015-11-16 18:02:26 +01:00
# the absolute minimum for extroot to work at all (i.e. when the disk is already set up, for example by hand).
# this list may be smaller and/or different for your router, but it works with my ar71xx.
PREINSTALLED_PACKAGES = "block-mount kmod-usb2 kmod-usb-storage kmod-fs-ext4"
# some kernel modules may also be needed for your hardware
#PREINSTALLED_PACKAGES+=" kmod-usb-uhci kmod-usb-ohci"
# these are needed for the proper functioning of the auto extroot scripts
PREINSTALLED_PACKAGES += " blkid mount-utils swap-utils e2fsprogs fdisk"
2015-11-15 16:42:06 +01:00
# the following packages are optional, feel free to (un)comment them
PREINSTALLED_PACKAGES += " wireless-tools firewall iptables"
PREINSTALLED_PACKAGES += " kmod-usb-storage-extras kmod-mmc"
2014-12-10 02:11:30 +01:00
PREINSTALLED_PACKAGES += " ppp ppp-mod-pppoe ppp-mod-pppol2tp ppp-mod-pptp kmod-ppp kmod-pppoe"
PREINSTALLED_PACKAGES += " luci"
2016-08-25 17:22:16 +05:30
mkdir -pv ${ BUILD }
2014-12-03 00:31:57 +01:00
rm -rf $IMGTEMPDIR
2015-11-15 16:42:06 +01:00
cp -r image-extras/common/ $IMGTEMPDIR
2016-07-25 14:17:08 +02:00
PER_PLATFORM_IMAGE_EXTRAS = image-extras/${ TARGET_DEVICE } /
2015-07-11 02:01:26 +02:00
if [ -e $PER_PLATFORM_IMAGE_EXTRAS ] ; then
rsync -pr $PER_PLATFORM_IMAGE_EXTRAS $IMGTEMPDIR /
2014-12-03 00:31:57 +01:00
fi
2016-07-25 14:17:08 +02:00
if [ ! -e ${ IMGBUILDER_DIR } ] ; then
2014-12-03 00:31:57 +01:00
pushd ${ BUILD }
2016-07-25 14:17:08 +02:00
# --no-check-certificate if needed
2018-07-18 10:16:39 +02:00
wget --continue ${ IMGBUILDERURL }
2016-12-12 18:39:04 +01:00
xz -d <${ IMGBUILDER_ARCHIVE } | tar vx
2014-12-03 00:31:57 +01:00
popd
fi
2016-07-25 14:17:08 +02:00
pushd ${ IMGBUILDER_DIR }
2014-12-03 00:31:57 +01:00
2016-07-25 14:17:08 +02:00
make image PROFILE = ${ TARGET_DEVICE } PACKAGES = " ${ PREINSTALLED_PACKAGES } " FILES = ${ IMGTEMPDIR }
2014-12-03 00:31:57 +01:00
2017-05-14 20:17:58 +02:00
pushd bin/targets/${ TARGET_ARCHITECTURE } /
2014-12-03 00:31:57 +01:00
ln -s ../../packages .
popd
popd