diff options
-rw-r--r-- | recipes-extended/xvisor/xvisor-configs.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes-extended/xvisor/xvisor-configs.inc b/recipes-extended/xvisor/xvisor-configs.inc index f53bba25..cd873cb3 100644 --- a/recipes-extended/xvisor/xvisor-configs.inc +++ b/recipes-extended/xvisor/xvisor-configs.inc | |||
@@ -9,7 +9,7 @@ def get_oemake_config(a, d): | |||
9 | elif re.match('riscv32(eb|)$', a): return 'generic-32b-defconfig' | 9 | elif re.match('riscv32(eb|)$', a): return 'generic-32b-defconfig' |
10 | elif re.match('riscv64(eb|)$', a): return 'generic-64b-defconfig' | 10 | elif re.match('riscv64(eb|)$', a): return 'generic-64b-defconfig' |
11 | else: | 11 | else: |
12 | bb.error("cannot map '%s' to a Xvisor defconfig" % a) | 12 | bb.note("cannot map '%s' to a Xvisor defconfig" % a) |
13 | 13 | ||
14 | def map_xvisor_arch(a, d): | 14 | def map_xvisor_arch(a, d): |
15 | import re | 15 | import re |
@@ -22,4 +22,4 @@ def map_xvisor_arch(a, d): | |||
22 | elif re.match('aarch64_be_ilp32$', a): return 'arm' | 22 | elif re.match('aarch64_be_ilp32$', a): return 'arm' |
23 | elif re.match('riscv(32|64|)(eb|)$', a): return 'riscv' | 23 | elif re.match('riscv(32|64|)(eb|)$', a): return 'riscv' |
24 | else: | 24 | else: |
25 | bb.error("cannot map '%s' to a Xvisor architecture" % a) | 25 | bb.note("cannot map '%s' to a Xvisor architecture" % a) |