diff options
author | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2025-01-24 17:00:14 +0100 |
---|---|---|
committer | Leo Yu-Chi Liang <ycliang@andestech.com> | 2025-02-03 11:33:04 +0800 |
commit | ca3985ff86aee9afa110467bad027af8f288d17c (patch) | |
tree | cf6b6c44cfbd713260e426722f0b1fd4082dff57 | |
parent | 490be9de22ac3dac18ebf33ebaefb5f93f29963e (diff) |
cmd: sbi: add bhyve SBI implementation ID
Bhyve is the hypervisor used by FreeBSD.
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Reviewed-by: Leo Yu-Chi Liang <ycliang@andestech.com>
-rw-r--r-- | cmd/riscv/sbi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/riscv/sbi.c b/cmd/riscv/sbi.c index 5ecf56781c1..b013c8c8d4e 100644 --- a/cmd/riscv/sbi.c +++ b/cmd/riscv/sbi.c @@ -30,6 +30,7 @@ static struct sbi_imp implementations[] = { { 8, "PolarFire Hart Software Services" }, { 9, "coreboot" }, { 10, "oreboot" }, + { 11, "bhyve" }, }; static struct sbi_ext extensions[] = { |