diff options
author | Karel Kočí <karel.koci@nic.cz> | 2019-10-16 10:50:35 +0200 |
---|---|---|
committer | Karel Kočí <karel.koci@nic.cz> | 2019-10-16 10:50:35 +0200 |
commit | 351a4f362e0729263d36127c046994194561d5fe (patch) | |
tree | e01f82a6812732f96c7aec5902dbe1ce0e742a11 | |
parent | 30780d174bc9623f733ac182a999283e3da59fa5 (diff) | |
download | openwrt-personal-pkgs-351a4f362e0729263d36127c046994194561d5fe.tar.gz openwrt-personal-pkgs-351a4f362e0729263d36127c046994194561d5fe.tar.bz2 openwrt-personal-pkgs-351a4f362e0729263d36127c046994194561d5fe.zip |
updater.lua: add support for Turris 1.x
-rw-r--r-- | updater.lua | 2 |
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 |