2021-02-14 10:05:02 +01:00
#!/bin/sh
2014-12-03 00:31:57 +01:00
2015-05-26 01:50:07 +02:00
set -e
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/"
2020-11-28 22:13:05 +01:00
BUILD = ` readlink -f $BUILD `
2016-03-17 15:22:22 +01:00
2016-07-25 14:17:08 +02:00
###
### chose a release
###
2021-10-19 14:27:15 +02:00
RELEASE = "21.02.0"
2016-07-25 14:17:08 +02:00
2019-01-06 18:40:27 +01:00
IMGBUILDER_NAME = " openwrt-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 "
2020-11-29 23:43:14 +01:00
# see this feature request:
# FS#1670 - consistent naming convention for the imagebuilder.tar.xz URL
# https://bugs.openwrt.org/index.php?do=details&task_id=1670
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 "
2021-10-19 14:27:15 +02:00
echo " e.g.: $0 ath79 generic tplink_tl-wr1043nd-v1 "
2021-02-14 10:05:55 +01:00
echo " $0 ath79 generic tplink_archer-c6-v2 "
2021-10-19 14:27:15 +02:00
echo " $0 ath79 generic tplink_tl-wdr4300-v1 "
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).
2021-10-19 14:27:15 +02:00
# this list may be smaller and/or different for your router, but it works with my ath79.
PREINSTALLED_PACKAGES = "block-mount kmod-fs-ext4 kmod-usb-storage"
2015-11-16 18:02:26 +01:00
# 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 } /
2019-01-06 18:40:27 +01:00
ln -s ../../../packages .
2014-12-03 00:31:57 +01:00
popd
popd