diff options
author | Karel Kočí <karel.koci@nic.cz> | 2019-03-21 09:38:48 +0100 |
---|---|---|
committer | Karel Kočí <karel.koci@nic.cz> | 2019-03-21 09:38:48 +0100 |
commit | bd2a9ab20b470e808cd8f5156c3a2d872f752ea0 (patch) | |
tree | 37f3ac9a9e399ff80f247fbec4c6e4026d4a596c /personal-pkgs-repo/files/updater.lua | |
parent | 8bb7ea981bb4bfbd69827068637f55bb671ed2ff (diff) | |
download | openwrt-personal-pkgs-bd2a9ab20b470e808cd8f5156c3a2d872f752ea0.tar.gz openwrt-personal-pkgs-bd2a9ab20b470e808cd8f5156c3a2d872f752ea0.tar.bz2 openwrt-personal-pkgs-bd2a9ab20b470e808cd8f5156c3a2d872f752ea0.zip |
personal-pkgs-repo: Update for new updater and changed lists
Diffstat (limited to 'personal-pkgs-repo/files/updater.lua')
-rw-r--r-- | personal-pkgs-repo/files/updater.lua | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/personal-pkgs-repo/files/updater.lua b/personal-pkgs-repo/files/updater.lua index 5f85763..79c6847 100644 --- a/personal-pkgs-repo/files/updater.lua +++ b/personal-pkgs-repo/files/updater.lua @@ -1,14 +1,13 @@ local uci_cursor = uci.cursor(root_dir .. "/etc/config") local board -if model:match('Mox') then +local model = model or os_release["LEDE_DEVICE_PRODUCT"] +if model:match('[Mm]ox') then board = "mox" -elseif model:match('Omnia') then +elseif model:match('[Oo]mnia') then board = "omnia" -elseif model:match('^Turris$') then - board = "turris" else - DIE("Unsupported board!") + DIE("Unsupported board: " .. model) end local mode = uci_cursor:get("updater", "turris", "mode") @@ -17,7 +16,7 @@ if mode and mode ~= "branch" then DIE("Only branch mode allowed for personal-pkgs, used: " .. tostring(mode)) end if animal ~= "hbd" and animal ~= "hbk" then - DIE("Unsupported branch for pernal-pkgs: " .. tostring(animal)) + DIE("Unsupported branch for personal-pkgs: " .. tostring(animal)) end Repository("personal-pkgs", "https://cynerd.cz/repo/turris/" .. animal .. "/" .. board, { |