mirror of
https://github.com/cusspvz/openwrt-builder.docker.git
synced 2026-08-21 21:33:04 +00:00
enhancements: dockerfiles + readme + docker-image-builder
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
# DEVICES:
|
||||
# - Raspberry PI 1
|
||||
|
||||
OPENWRT_BASE="http://downloads.openwrt.org/releases/18.06.1/targets/brcm2708/bcm2708"
|
||||
OPENWRT_CONFIG_SEED="$OPENWRT_BASE/config.seed"
|
||||
OPENWRT_IMAGE_BUILDER="$OPENWRT_BASE/openwrt-imagebuilder-18.06.1-brcm2708-bcm2708.Linux-x86_64.tar.xz"
|
||||
OPENWRT_PACKAGE_BUILDER="$OPENWRT_BASE/openwrt-sdk-18.06.1-brcm2708-bcm2708_gcc-7.3.0_musl_eabi.Linux-x86_64.tar.xz"
|
||||
|
||||
INSTALL_IMAGE_BUILDER="curl $OPENWRT_IMAGE_BUILDER | tar xvJf - --strip-components 1 -C /src"
|
||||
INSTALL_PACKAGE_BUILDER="curl $OPENWRT_PACKAGE_BUILDER | tar xvJf - --strip-components 1 -C /src"
|
||||
@@ -0,0 +1,10 @@
|
||||
# DEVICES:
|
||||
# - Raspberry PI 2
|
||||
|
||||
OPENWRT_BASE="http://downloads.openwrt.org/releases/18.06.1/targets/brcm2708/bcm2709"
|
||||
OPENWRT_CONFIG_SEED="$OPENWRT_BASE/config.seed"
|
||||
OPENWRT_IMAGE_BUILDER="$OPENWRT_BASE/openwrt-imagebuilder-18.06.1-brcm2708-bcm2709.Linux-x86_64.tar.xz"
|
||||
OPENWRT_PACKAGE_BUILDER="$OPENWRT_BASE/openwrt-sdk-18.06.1-brcm2708-bcm2709_gcc-7.3.0_musl_eabi.Linux-x86_64.tar.xz"
|
||||
|
||||
INSTALL_IMAGE_BUILDER="curl $OPENWRT_IMAGE_BUILDER | tar xvJf - --strip-components 1 -C /src"
|
||||
INSTALL_PACKAGE_BUILDER="curl $OPENWRT_PACKAGE_BUILDER | tar xvJf - --strip-components 1 -C /src"
|
||||
@@ -1,4 +1,8 @@
|
||||
# DEVICES:
|
||||
# - Raspberry PI 3
|
||||
|
||||
OPENWRT_BASE="http://downloads.openwrt.org/releases/18.06.1/targets/brcm2708/bcm2710"
|
||||
OPENWRT_CONFIG_SEED="$OPENWRT_BASE/config.seed"
|
||||
OPENWRT_IMAGE_BUILDER="$OPENWRT_BASE/openwrt-imagebuilder-18.06.1-brcm2708-bcm2710.Linux-x86_64.tar.xz"
|
||||
OPENWRT_PACKAGE_BUILDER="$OPENWRT_BASE/openwrt-sdk-18.06.1-brcm2708-bcm2710_gcc-7.3.0_musl.Linux-x86_64.tar.xz"
|
||||
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
# DEVICES:
|
||||
# - BeagleBone Black
|
||||
|
||||
OPENWRT_BASE="http://downloads.openwrt.org/releases/18.06.1/targets/omap/generic"
|
||||
OPENWRT_CONFIG_SEED="$OPENWRT_BASE/config.seed"
|
||||
OPENWRT_IMAGE_BUILDER="$OPENWRT_BASE/openwrt-imagebuilder-18.06.1-omap.Linux-x86_64.tar.xz"
|
||||
OPENWRT_PACKAGE_BUILDER="$OPENWRT_BASE/openwrt-sdk-18.06.1-omap_gcc-7.3.0_musl_eabi.Linux-x86_64.tar.xz"
|
||||
|
||||
INSTALL_IMAGE_BUILDER="curl $OPENWRT_IMAGE_BUILDER | tar xvJf - --strip-components 1 -C /src"
|
||||
INSTALL_PACKAGE_BUILDER="curl $OPENWRT_PACKAGE_BUILDER | tar xvJf - --strip-components 1 -C /src"
|
||||
Reference in New Issue
Block a user