aboutsummaryrefslogtreecommitdiff
path: root/src/kern/init.c
diff options
context:
space:
mode:
authorJosh Rahm <joshuarahm@gmail.com>2020-11-25 15:47:02 -0700
committerJosh Rahm <joshuarahm@gmail.com>2020-11-25 15:47:02 -0700
commit6d22b0dfc7761a605758552d5824f8039ac5a00f (patch)
treede0cd4848c02b787d45b41afaca244606eceab5d /src/kern/init.c
parentb07c6f6a9d926d4eac726b94963e479839382675 (diff)
downloadstm32l4-6d22b0dfc7761a605758552d5824f8039ac5a00f.tar.gz
stm32l4-6d22b0dfc7761a605758552d5824f8039ac5a00f.tar.bz2
stm32l4-6d22b0dfc7761a605758552d5824f8039ac5a00f.zip
Primitive ability to call kernel code from userspace.
Diffstat (limited to 'src/kern/init.c')
-rw-r--r--src/kern/init.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/kern/init.c b/src/kern/init.c
index 8885c09..c776b4a 100644
--- a/src/kern/init.c
+++ b/src/kern/init.c
@@ -66,9 +66,6 @@ init1()
init3()
{
- klogf("--- System Restart ---\n");
- klogf("Setting the vector offset table to point to the start of flash.\n");
-
/* Set the vector offset table to be at the start
* of FLASH memory. */
SCB.vto_r = 0x08000000;
@@ -92,10 +89,6 @@ void run_init_routines()
++initfn) {
while (initfn == init_boundaries[initlevel] && initlevel < INIT_LEVEL_7) {
++initlevel;
-
- if (initlevel > 2) {
- klogf("[init%d]\n", initlevel);
- }
}
(*initfn)();
@@ -103,11 +96,7 @@ void run_init_routines()
while (initlevel < INIT_LEVEL_7) {
++initlevel;
-
- klogf("[init%d]\n", initlevel);
}
-
- klogf("Initialization Routines Complete. Onto main()\n");
}
/*