diff options
author | Karel Kočí <karel.koci@nic.cz> | 2018-02-19 15:53:26 +0100 |
---|---|---|
committer | Karel Kočí <karel.koci@nic.cz> | 2018-02-19 15:53:26 +0100 |
commit | acb34202a5e74bfafcaf5a8ca0e0497f5b520727 (patch) | |
tree | b36123327b7ce1780490dad10d2584ad8ea4835c | |
parent | 3e31c485fef5b7fa5f7f21ad5dfc7ac92a03e5b1 (diff) | |
download | turris-myrepo-acb34202a5e74bfafcaf5a8ca0e0497f5b520727.tar.gz turris-myrepo-acb34202a5e74bfafcaf5a8ca0e0497f5b520727.tar.bz2 turris-myrepo-acb34202a5e74bfafcaf5a8ca0e0497f5b520727.zip |
Switch updater-ng to supervisor and use nightly repository
-rwxr-xr-x | build_repo.sh | 4 | ||||
-rw-r--r-- | updater-ng/Makefile | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/build_repo.sh b/build_repo.sh index c0c972a..52e3bab 100755 --- a/build_repo.sh +++ b/build_repo.sh @@ -28,10 +28,10 @@ pull_sdk() { # TODO these links won't be valid for ever if [ "$BOARD" = "omnia" ] || [ "$BOARD" = "all" ]; then - pull_sdk omnia "https://repo.turris.cz/omnia/OpenWrt-SDK-mvebu_gcc-4.8-linaro_musl-1.1.15_eabi.Linux-x86_64.tar.bz2" + pull_sdk omnia "https://repo.turris.cz/omnia-nightly/OpenWrt-SDK-mvebu_gcc-4.8-linaro_musl-1.1.15_eabi.Linux-x86_64.tar.bz2" fi if [ "$BOARD" = "turris" ] || [ "$BOARD" = "all" ]; then - pull_sdk turris "https://repo.turris.cz/turris/OpenWrt-SDK-mpc85xx-p2020-nand_gcc-4.8-linaro_uClibc-0.9.33.2.Linux-x86_64.tar.bz2" + pull_sdk turris "https://repo.turris.cz/turris-nightly/OpenWrt-SDK-mpc85xx-p2020-nand_gcc-4.8-linaro_uClibc-0.9.33.2.Linux-x86_64.tar.bz2" fi diff --git a/updater-ng/Makefile b/updater-ng/Makefile index c008452..984d4bf 100644 --- a/updater-ng/Makefile +++ b/updater-ng/Makefile @@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=updater-ng PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=https://gitlab.labs.nic.cz/turris/updater.git -PKG_SOURCE_BRANCH:=HEAD +PKG_SOURCE_BRANCH:=supervisor PKG_MAINTAINER:=CZ.NIC <packaging@turris.cz> HOST_BUILD_DEPENDS:=curl/host libevent2/host lua/host |