Skip to content

Commit 2134432

Browse files
authored
Detect Odroid platforms with 'Hardkernel' in cpuinfo output (#3327)
1 parent 7621263 commit 2134432

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scriptmodules/system.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -375,16 +375,16 @@ function get_platform() {
375375
esac
376376
fi
377377
;;
378-
ODROIDC)
378+
*ODROIDC)
379379
__platform="odroid-c1"
380380
;;
381-
ODROID-C2)
381+
*ODROID-C2)
382382
__platform="odroid-c2"
383383
;;
384384
"Freescale i.MX6 Quad/DualLite (Device Tree)")
385385
__platform="imx6"
386386
;;
387-
ODROID-XU[34])
387+
*ODROID-XU[34])
388388
__platform="odroid-xu"
389389
;;
390390
"Rockchip (Device Tree)")

0 commit comments

Comments
 (0)