aboutsummaryrefslogtreecommitdiff
path: root/loader_stage1.c
diff options
context:
space:
mode:
Diffstat (limited to 'loader_stage1.c')
-rw-r--r--loader_stage1.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/loader_stage1.c b/loader_stage1.c
index 9492747..d209c15 100644
--- a/loader_stage1.c
+++ b/loader_stage1.c
@@ -1,6 +1,5 @@
#include <stddef.h>
#include <stdint.h>
-#include <uart.h>
#include <global.h>
char *const stage2_addr = ((void*) 0x4000);
@@ -15,10 +14,6 @@ extern char
void kernel_main(uint32_t r0, uint32_t r1, uint32_t atags)
{
- // uart_init() call to be moved to stage2...
- uart_init();
- uart_puts("Hello, bootloader World!\r\n");
-
// stage2 of the bootloader is a blob embedded in executable;
// copy it over to it's destination place
// TODO implement a memcpy() somewhere and use it instead of loops