Skip to content

Commit

Permalink
[do-not-merge] Disable risc-v boards
Browse files Browse the repository at this point in the history
Signed-off-by: Robbie VanVossen <[email protected]>
  • Loading branch information
Furao committed Sep 5, 2024
1 parent b6a1386 commit f2c6351
Showing 1 changed file with 31 additions and 31 deletions.
62 changes: 31 additions & 31 deletions build_sdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,37 +210,37 @@ class ConfigInfo:
"hierarchy": Path("example/qemu_virt_aarch64/hierarchy")
}
),
BoardInfo(
name="qemu_virt_riscv64",
arch=KernelArch.RISCV64,
gcc_cpu=None,
loader_link_address=0x80200000,
kernel_options={
"KernelPlatform": "qemu-riscv-virt",
"KernelIsMCS": True,
"QEMU_MEMORY": "2048",
"KernelRiscvExtD": True,
"KernelRiscvExtF": True,
},
examples={
"hello": Path("example/qemu_virt_riscv64/hello"),
}
),
BoardInfo(
name="star64",
arch=KernelArch.RISCV64,
gcc_cpu=None,
loader_link_address=0x60000000,
kernel_options={
"KernelIsMCS": True,
"KernelPlatform": "star64",
"KernelRiscvExtD": True,
"KernelRiscvExtF": True,
},
examples={
"hello": Path("example/star64/hello")
}
),
# BoardInfo(
# name="qemu_virt_riscv64",
# arch=KernelArch.RISCV64,
# gcc_cpu=None,
# loader_link_address=0x80200000,
# kernel_options={
# "KernelPlatform": "qemu-riscv-virt",
# "KernelIsMCS": True,
# "QEMU_MEMORY": "2048",
# "KernelRiscvExtD": True,
# "KernelRiscvExtF": True,
# },
# examples={
# "hello": Path("example/qemu_virt_riscv64/hello"),
# }
# ),
# BoardInfo(
# name="star64",
# arch=KernelArch.RISCV64,
# gcc_cpu=None,
# loader_link_address=0x60000000,
# kernel_options={
# "KernelIsMCS": True,
# "KernelPlatform": "star64",
# "KernelRiscvExtD": True,
# "KernelRiscvExtF": True,
# },
# examples={
# "hello": Path("example/star64/hello")
# }
# ),
)

SUPPORTED_CONFIGS = (
Expand Down

0 comments on commit f2c6351

Please sign in to comment.