liblaunch: update kernel library references
This commit is contained in:
@@ -21,5 +21,5 @@ bsp_add_library(
|
|||||||
NAME liblaunch
|
NAME liblaunch
|
||||||
LIB_DIR /usr/lib)
|
LIB_DIR /usr/lib)
|
||||||
|
|
||||||
target_link_libraries(liblaunch-static PRIVATE librosetta libmango libc-core)
|
target_link_libraries(liblaunch-static PRIVATE librosetta libmagenta libc-core)
|
||||||
target_link_libraries(liblaunch PRIVATE librosetta libmango libc)
|
target_link_libraries(liblaunch PRIVATE librosetta libmagenta libc)
|
||||||
|
|||||||
+4
-4
@@ -1,9 +1,9 @@
|
|||||||
#include "elf.h"
|
#include "elf.h"
|
||||||
|
|
||||||
#include <mango/config.h>
|
#include <magenta/config.h>
|
||||||
#include <mango/handle.h>
|
#include <magenta/handle.h>
|
||||||
#include <mango/log.h>
|
#include <magenta/log.h>
|
||||||
#include <mango/vm.h>
|
#include <magenta/vm.h>
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|||||||
+1
-1
@@ -2,7 +2,7 @@
|
|||||||
#define USERBOOT_ELF_H_
|
#define USERBOOT_ELF_H_
|
||||||
|
|
||||||
#include <launch.h>
|
#include <launch.h>
|
||||||
#include <mango/types.h>
|
#include <magenta/types.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
#define ELF_LOAD_ERR -1
|
#define ELF_LOAD_ERR -1
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#ifndef LAUNCH_H_
|
#ifndef LAUNCH_H_
|
||||||
#define LAUNCH_H_
|
#define LAUNCH_H_
|
||||||
|
|
||||||
#include <mango/types.h>
|
#include <magenta/types.h>
|
||||||
|
|
||||||
enum launch_status {
|
enum launch_status {
|
||||||
LAUNCH_OK,
|
LAUNCH_OK,
|
||||||
|
|||||||
@@ -2,10 +2,10 @@
|
|||||||
#include "stack.h"
|
#include "stack.h"
|
||||||
|
|
||||||
#include <launch.h>
|
#include <launch.h>
|
||||||
#include <mango/handle.h>
|
#include <magenta/handle.h>
|
||||||
#include <mango/log.h>
|
#include <magenta/log.h>
|
||||||
#include <mango/task.h>
|
#include <magenta/task.h>
|
||||||
#include <mango/vm.h>
|
#include <magenta/vm.h>
|
||||||
#include <rosetta/bootstrap.h>
|
#include <rosetta/bootstrap.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#include "stack.h"
|
#include "stack.h"
|
||||||
|
|
||||||
#include <mango/log.h>
|
#include <magenta/log.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
void stack_writer_init(
|
void stack_writer_init(
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#ifndef LIBLAUNCH_STACK_H_
|
#ifndef LIBLAUNCH_STACK_H_
|
||||||
#define LIBLAUNCH_STACK_H_
|
#define LIBLAUNCH_STACK_H_
|
||||||
|
|
||||||
#include <mango/types.h>
|
#include <magenta/types.h>
|
||||||
|
|
||||||
struct stack_writer {
|
struct stack_writer {
|
||||||
virt_addr_t w_local_sp;
|
virt_addr_t w_local_sp;
|
||||||
|
|||||||
Reference in New Issue
Block a user