25 lines
810 B
Diff
25 lines
810 B
Diff
diff --git a/tools/ds-identify b/tools/ds-identify
|
|
index 30d4b0f..0611aba 100644
|
|
--- a/tools/ds-identify
|
|
+++ b/tools/ds-identify
|
|
@@ -1220,7 +1220,7 @@ dscheck_OpenStack() {
|
|
|
|
# LP: #1715241 : arch other than intel are not identified properly.
|
|
case "$DI_UNAME_MACHINE" in
|
|
- i?86|x86_64) :;;
|
|
+ i?86|x86_64|aarch64) :;;
|
|
*) return ${DS_MAYBE};;
|
|
esac
|
|
|
|
@@ -1636,9 +1636,7 @@ parse_policy() {
|
|
local def=""
|
|
case "$DI_UNAME_MACHINE" in
|
|
# these have dmi data
|
|
- i?86|x86_64) def=${DI_DEFAULT_POLICY};;
|
|
- # aarch64 has dmi, but not currently used (LP: #1663304)
|
|
- aarch64) def=${DI_DEFAULT_POLICY_NO_DMI};;
|
|
+ i?86|x86_64|aarch64) def=${DI_DEFAULT_POLICY};;
|
|
*) def=${DI_DEFAULT_POLICY_NO_DMI};;
|
|
esac
|
|
local policy="$1"
|