|
| 1 | +-- openkal-opensbi — openkal on the RISC-V Supervisor Binary Interface. |
| 2 | +-- |
| 3 | +-- ⭐ The PORTABLE RISC-V backend, as distinct from a board's own. A board |
| 4 | +-- backend writes to a device address, and that address is a board fact: the |
| 5 | +-- same binary on a second RISC-V machine writes to something that is not a |
| 6 | +-- UART and prints nothing. SBI's console is a call into firmware that already |
| 7 | +-- knows the machine, so one image runs under OpenSBI on QEMU's `virt` and on a |
| 8 | +-- real board without being rebuilt. |
| 9 | +-- |
| 10 | +-- ⚠️ NO `deps`. The only mcpp dependency is the specification package, declared |
| 11 | +-- in this package's own manifest; nothing needs installing. |
| 12 | +package = { |
| 13 | + spec = "1", |
| 14 | + namespace = "mcpplibs", |
| 15 | + name = "openkal-opensbi", |
| 16 | + description = "An implementation of openkal on the RISC-V Supervisor Binary Interface, portable across every machine whose firmware provides one", |
| 17 | + licenses = {"Apache-2.0"}, |
| 18 | + repo = "https://github.com/mcpplibs/openkal-opensbi", |
| 19 | + type = "package", |
| 20 | + |
| 21 | + xpm = { |
| 22 | + linux = { |
| 23 | + ["0.1.0"] = { |
| 24 | + url = { |
| 25 | + GLOBAL = "https://github.com/mcpplibs/openkal-opensbi/archive/refs/tags/0.1.0.tar.gz", |
| 26 | + CN = "https://gitcode.com/mcpp-res/openkal-opensbi/releases/download/0.1.0/openkal-opensbi-0.1.0.tar.gz", |
| 27 | + }, |
| 28 | + sha256 = "6b5b81be59171f6f0d8e5d2e586a7f502479a2f309efb7fb1ab17c77a7579884", |
| 29 | + }, |
| 30 | + }, |
| 31 | + macosx = { |
| 32 | + ["0.1.0"] = { |
| 33 | + url = { |
| 34 | + GLOBAL = "https://github.com/mcpplibs/openkal-opensbi/archive/refs/tags/0.1.0.tar.gz", |
| 35 | + CN = "https://gitcode.com/mcpp-res/openkal-opensbi/releases/download/0.1.0/openkal-opensbi-0.1.0.tar.gz", |
| 36 | + }, |
| 37 | + sha256 = "6b5b81be59171f6f0d8e5d2e586a7f502479a2f309efb7fb1ab17c77a7579884", |
| 38 | + }, |
| 39 | + }, |
| 40 | + windows = { |
| 41 | + ["0.1.0"] = { |
| 42 | + url = { |
| 43 | + GLOBAL = "https://github.com/mcpplibs/openkal-opensbi/archive/refs/tags/0.1.0.tar.gz", |
| 44 | + CN = "https://gitcode.com/mcpp-res/openkal-opensbi/releases/download/0.1.0/openkal-opensbi-0.1.0.tar.gz", |
| 45 | + }, |
| 46 | + sha256 = "6b5b81be59171f6f0d8e5d2e586a7f502479a2f309efb7fb1ab17c77a7579884", |
| 47 | + }, |
| 48 | + }, |
| 49 | + }, |
| 50 | + |
| 51 | + -- The package's own manifest, inside the tarball's wrap directory. |
| 52 | + mcpp = "*/mcpp.toml", |
| 53 | +} |
0 commit comments