From b14d4187fe1a328b9e87f61a984fd70e17211954 Mon Sep 17 00:00:00 2001 From: Andrew Waterman Date: Fri, 17 Feb 2017 01:54:52 -0800 Subject: Clean up boot loader for physical address loading --- bbl/bbl.h | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'bbl/bbl.h') diff --git a/bbl/bbl.h b/bbl/bbl.h index e9e1dab..67997b9 100644 --- a/bbl/bbl.h +++ b/bbl/bbl.h @@ -8,14 +8,7 @@ #include #include -typedef struct { - uintptr_t entry; - uintptr_t first_user_vaddr; - uintptr_t first_vaddr_after_user; - uintptr_t load_offset; -} kernel_elf_info; - -void load_kernel_elf(void* blob, size_t size, kernel_elf_info* info); +uintptr_t load_kernel_elf(void* blob, size_t size); void print_logo(); #endif // !__ASSEMBLER__ -- cgit v1.1 From f6bca6e35b66632afad68f6b7fb2b3203c8502fb Mon Sep 17 00:00:00 2001 From: Andrew Waterman Date: Mon, 20 Feb 2017 21:43:09 -0800 Subject: Don't block for acks on console writes --- bbl/bbl.h | 1 - 1 file changed, 1 deletion(-) (limited to 'bbl/bbl.h') diff --git a/bbl/bbl.h b/bbl/bbl.h index 67997b9..c9a02e1 100644 --- a/bbl/bbl.h +++ b/bbl/bbl.h @@ -8,7 +8,6 @@ #include #include -uintptr_t load_kernel_elf(void* blob, size_t size); void print_logo(); #endif // !__ASSEMBLER__ -- cgit v1.1