Match master-riscv64 to f31 branch

Signed-off-by: David Abdurachmanov <david.abdurachmanov@sifive.com>
This commit is contained in:
David Abdurachmanov 2019-10-03 13:51:54 +03:00
parent c16271b274
commit 2ef55a53ea
Signed by: davidlt
GPG Key ID: 8B7F1DA0E2C9FDBB
1 changed files with 0 additions and 25 deletions

View File

@ -1,25 +0,0 @@
diff --git a/imgcreate/live.py b/imgcreate/live.py
index b3da184..d464913 100755
--- a/imgcreate/live.py
+++ b/imgcreate/live.py
@@ -1043,6 +1043,8 @@ elif arch in ("ppc64",):
LiveImageCreator = ppc64LiveImageCreator
elif arch.startswith(("arm", "aarch64")):
LiveImageCreator = LiveImageCreatorBase
+elif arch in ("riscv64",):
+ LiveImageCreator = LiveImageCreatorBase
else:
raise CreatorError("Architecture not supported!")
diff --git a/tools/editliveos b/tools/editliveos
index 36d7124..f542201 100755
--- a/tools/editliveos
+++ b/tools/editliveos
@@ -2158,5 +2158,7 @@ elif arch in ("ppc64",):
LiveImageCreator = ppc64LiveImageCreator
elif arch.startswith(("arm", "aarch64")):
LiveImageCreator = LiveImageCreatorBase
+elif arch in ("riscv64",):
+ LiveImageCreator = LiveImageCreatorBase
else:
raise CreatorError("Architecture not supported!")