diff options
author | Koen Vandeputte <koen.vandeputte@ncentric.com> | 2019-07-29 10:10:02 +0200 |
---|---|---|
committer | Koen Vandeputte <koen.vandeputte@ncentric.com> | 2019-07-29 10:15:46 +0200 |
commit | 1172d809f286ca75b146262d3fe381ddcb4b51ec (patch) | |
tree | 5836e65c670e7ed826694840d74456b91a5143e5 /target/linux/ar71xx/base-files | |
parent | 5ec609815edb1ede42c5ffdf2e9c417a6309385c (diff) | |
download | upstream-1172d809f286ca75b146262d3fe381ddcb4b51ec.tar.gz upstream-1172d809f286ca75b146262d3fe381ddcb4b51ec.tar.bz2 upstream-1172d809f286ca75b146262d3fe381ddcb4b51ec.zip |
ar71xx: fix Mikrotik board detection
Fix a typo in the machine type being extracted from /proc/cpuinfo
which causes all Mikrotik board to be undetected properly.
This lead to sysupgrade issues and probably some others too.
Fixes: 76c963bb01fb ("ar71xx: base-files: fix board detect on new MikroTik devices")
Signed-off-by: Koen Vandeputte <koen.vandeputte@ncentric.com>
Diffstat (limited to 'target/linux/ar71xx/base-files')
-rwxr-xr-x | target/linux/ar71xx/base-files/lib/ar71xx.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/ar71xx/base-files/lib/ar71xx.sh b/target/linux/ar71xx/base-files/lib/ar71xx.sh index c795fee466..bb022c1345 100755 --- a/target/linux/ar71xx/base-files/lib/ar71xx.sh +++ b/target/linux/ar71xx/base-files/lib/ar71xx.sh @@ -1001,7 +1001,7 @@ ar71xx_board_detect() { *"MAC1200R") name="mc-mac1200r" ;; - "MikroTik"*) + "Mikrotik"*) name=$(mikrotik_board_detect "$machine") ;; *"MiniBox V1.0") |