diff --git a/.gitignore b/.gitignore index 567609b..3c49f0f 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ build/ +notes.txt diff --git a/README.md b/README.md index f4fbd25..116a792 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,54 @@ -* This is more of a template than something standalone +# What -I've extracted this from another project, but I think it's useful -enough for making it public. +It's a script to build a customized OpenWRT firmware that will +automatically set up +[extroot](http://wiki.openwrt.org/doc/howto/extroot) on any (!) +storage device plugged into the USB port (`/dev/sda`). + +# Why + +So that e.g. customers can buy a router on their own, flash our +firmware, plug in a pendrive, and manage their SIP (telephony) node +from our webapp. + +# Status + +This is more of a template than something standalone. You most +probably want to customize this script here and there; search for +`CUSTOMIZE` for places of interest. + +I've extracted this from a project where OpenWRT nodes auto-provision +themselves in 3 stages, but I thought it's useful enough for making it +public (stage 1: extroot setup; stage 2: install packages; stage 3: a +Python script for app-level sync). + +At the time of writing it only supports a few `ar71xx` routers but +it's easy to extend it. + +## Tested with + +[OpenWRT Barrier Breaker 14.07](http://downloads.openwrt.org/barrier_breaker/14.07/) +on a TP-Link WDR4300. + +# Building + +e.g. `./build.sh TLWDR4300` + +Results will be under `build/OpenWrt-ImageBuilder-ar71xx_generic-for-linux-x86_64`. + +# Usage + +After flashing the firmware the router will have the standard +`192.168.1.1` IP address, and SSH will listen there using the keys +specified in `image-extras/etc/dropbear/authorized_keys`. + +Once connected, you can read the log with `logread -f`. + +The autoprovision script will wait for any `/dev/sda` to show up, then +erase it and set up a `swap`, an `extroot`, and a `data` filesystem, +and then reboots. + +In stage 2 it will need an internet connection, so you should connect +to its [LuCI interface](http://192.168.1.1) to set up an Internet +upstream, and then it will automatically continue installing packages, +finishing the whole process, and then do a final reboot. diff --git a/build.sh b/build.sh index d24060c..d7d486a 100755 --- a/build.sh +++ b/build.sh @@ -20,6 +20,11 @@ IMGTEMPDIR="${BUILD}/openwrt-build-image-extras" IMGBUILDERDIR="${BUILD}/OpenWrt-ImageBuilder-ar71xx_generic-for-linux-x86_64" IMGBUILDERURL="https://downloads.openwrt.org/barrier_breaker/14.07/ar71xx/generic/OpenWrt-ImageBuilder-ar71xx_generic-for-linux-x86_64.tar.bz2" +PREINSTALLED_PACKAGES="wireless-tools firewall iptables" +PREINSTALLED_PACKAGES+=" ppp ppp-mod-pppoe ppp-mod-pppol2tp ppp-mod-pptp kmod-ppp kmod-pppoe" +PREINSTALLED_PACKAGES+=" fdisk blkid swap-utils mount-utils block-mount e2fsprogs kmod-fs-ext4 kmod-usb2 kmod-usb-uhci kmod-usb-ohci kmod-usb-storage kmod-usb-storage-extras kmod-mmc" +PREINSTALLED_PACKAGES+=" luci" + mkdir --parents ${BUILD} rm -rf $IMGTEMPDIR @@ -37,7 +42,7 @@ fi pushd ${IMGBUILDERDIR} -make image PROFILE=$TARGET_PLATFORM PACKAGES="wireless-tools firewall iptables fdisk blkid block-mount e2fsprogs kmod-fs-ext4 kmod-usb2 kmod-usb-uhci kmod-usb-ohci kmod-usb-storage kmod-usb-storage-extras luci kmod-mmc mount-utils ppp ppp-mod-pppoe ppp-mod-pppol2tp ppp-mod-pptp kmod-ppp kmod-pppoe" FILES=${IMGTEMPDIR} +make image PROFILE=${TARGET_PLATFORM} PACKAGES="${PREINSTALLED_PACKAGES}" FILES=${IMGTEMPDIR} pushd bin/ar71xx/ ln -s ../../packages . diff --git a/image-extras/etc/config/fstab b/image-extras/etc/config/fstab index ea1d80c..720e0f7 100644 --- a/image-extras/etc/config/fstab +++ b/image-extras/etc/config/fstab @@ -1,10 +1,10 @@ -config global 'automount' - option from_fstab '0' - option anon_mount '0' - -config global 'autoswap' - option from_fstab '0' +config global option anon_swap '0' + option anon_mount '0' + option auto_swap '0' + option auto_mount '0' + option delay_root '3' + option check_fs '0' config swap option uuid '05d615b3-bef8-460c-9a23-52db8d09e002' diff --git a/image-extras/root/autoprovision-functions.sh b/image-extras/root/autoprovision-functions.sh index bab2819..e2a438b 100755 --- a/image-extras/root/autoprovision-functions.sh +++ b/image-extras/root/autoprovision-functions.sh @@ -2,6 +2,9 @@ # utility functions for the various stages of autoprovisioning +# make sure that installed packages take precedence over busybox. see https://dev.openwrt.org/ticket/18523 +PATH="/usr/bin:/usr/sbin:/bin:/sbin" + # these are also copy-pasted into other scripts and config files! rootUUID=05d615b3-bef8-460c-9a23-52db8d09e000 dataUUID=05d615b3-bef8-460c-9a23-52db8d09e001 @@ -13,6 +16,7 @@ swapUUID=05d615b3-bef8-460c-9a23-52db8d09e002 autoprovisionUSBLed="tp-link:green:usb" autoprovisionStatusLed="tp-link:green:qss" +# CUSTOMIZE case $(ar71xx_board_name) in "tl-wr1043nd") autoprovisionUSBLed="tp-link:green:usb" @@ -27,7 +31,7 @@ case $(ar71xx_board_name) in autoprovisionStatusLed="tp-link:green:wlan5g" ;; "tl-wdr4300") - autoprovisionUSBLed="tp-link:green:usb1" + autoprovisionUSBLed="tp-link:blue:wan" autoprovisionStatusLed="tp-link:blue:qss" ;; esac @@ -76,6 +80,8 @@ signalFormatting() stopSignallingAnything() { + # TODO this is wrong, they should be restored to their original state. + # but then leds are only touched in the setup stage, which is ephemeral when things work as expected... setLedAttribute ${autoprovisionStatusLed} trigger none setLedAttribute ${autoprovisionUSBLed} trigger usbdev } diff --git a/image-extras/root/autoprovision-stage1.sh b/image-extras/root/autoprovision-stage1.sh index 7bcdb0f..1dcaa31 100755 --- a/image-extras/root/autoprovision-stage1.sh +++ b/image-extras/root/autoprovision-stage1.sh @@ -36,9 +36,9 @@ setupPendrivePartitions() # erase partition table dd if=/dev/zero of=/dev/sda bs=1M count=1 - # first is 'swap' - # second is 'root' - # the rest is 'data' + # sda1 is 'swap' + # sda2 is 'root' + # sda3 is 'data' fdisk /dev/sda </mnt/extroot/etc/rc.local <