File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+ #
3+ # Copyright 2021 UNSW, Sydney
4+ #
5+ # SPDX-License-Identifier: GPL-2.0-only
6+
7+ if [ " ${SCRIPT_PATH} " = " " ]; then
8+ echo " This script should not be called directly! Please use mq.sh"
9+ exit -1
10+ fi
11+
12+ SystemNumFiles_imx93a () {
13+ if [ " $1 " = ' -L' ]
14+ then
15+ echo 2
16+ else
17+ echo 1
18+ fi
19+ }
20+
21+ SystemName_imx93a () {
22+ echo " imx93a"
23+ }
24+
25+ SystemPowerOff_imx93a () {
26+ RebootShutdown imx93a
27+ }
28+
29+ Arch_imx93a () {
30+ echo " arm"
31+ }
32+
33+ ISA_imx93a () {
34+ echo " armv8-a"
35+ }
36+
37+ SOC_imx93a () {
38+ echo " imx93a"
39+ }
40+
41+ CPU_imx93a () {
42+ echo " cortex-a55"
43+ }
44+
45+ Cores_imx93a () {
46+ echo " 2"
47+ }
48+
49+ RAM_imx93a () {
50+ echo " 2GB"
51+ }
52+
53+ MaxCLK_imx93a () {
54+ echo " 1.7Ghz"
55+ }
56+
57+ Sel4Plat_imx93a () {
58+ echo " imx93a-evk"
59+ }
60+
61+ PXELinux_imx93a () {
62+ echo " yes"
63+ }
64+
65+ DTB_imx93a () {
66+ echo " yes"
67+ }
You can’t perform that action at this time.
0 commit comments