summaryrefslogtreecommitdiff
path: root/updater.lua
diff options
context:
space:
mode:
authorKarel Kočí <karel.koci@nic.cz>2019-10-16 10:50:35 +0200
committerKarel Kočí <karel.koci@nic.cz>2019-10-16 10:50:35 +0200
commit351a4f362e0729263d36127c046994194561d5fe (patch)
treee01f82a6812732f96c7aec5902dbe1ce0e742a11 /updater.lua
parent30780d174bc9623f733ac182a999283e3da59fa5 (diff)
downloadopenwrt-personal-pkgs-351a4f362e0729263d36127c046994194561d5fe.tar.gz
openwrt-personal-pkgs-351a4f362e0729263d36127c046994194561d5fe.tar.bz2
openwrt-personal-pkgs-351a4f362e0729263d36127c046994194561d5fe.zip
updater.lua: add support for Turris 1.x
Diffstat (limited to 'updater.lua')
-rw-r--r--updater.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/updater.lua b/updater.lua
index 6568ed8..7313ab0 100644
--- a/updater.lua
+++ b/updater.lua
@@ -6,6 +6,8 @@ if model:match('[Mm]ox') then
board = "mox"
elseif model:match('[Oo]mnia') then
board = "omnia"
+elseif model:match('Turris 1.x') then
+ board = "turris1x"
else
DIE("Unsupported board: " .. model)
end