[denali] Get all caps from the init port.

This allows us to remove the bootstrap capabilities for good woo hoo!
This commit is contained in:
Drew Galbraith 2023-06-17 01:30:47 -07:00
parent 6e86ce67f0
commit 7dcbbd671e
11 changed files with 62 additions and 28 deletions

View file

@ -1,15 +1,17 @@
#include <mammoth/channel.h>
#include <mammoth/debug.h>
#include <mammoth/init.h>
#include <stdint.h>
#include "ahci/ahci_driver.h"
#include "denali_server.h"
int main(uint64_t bootstrap_cap) {
uint64_t main(uint64_t init_port_cap) {
check(ParseInitPort(init_port_cap));
AhciDriver driver;
RET_ERR(driver.Init());
DenaliServer server(bootstrap_cap, driver);
DenaliServer server(gInitChannelCap, driver);
RET_ERR(server.RunServer());
// FIXME: Add thread join.
return 0;