Changeset cfdeedc in mainline for boot/arch/arm32/src/main.c
- Timestamp:
- 2018-10-21T23:12:23Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- bf05c74
- Parents:
- d59718e
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-10-21 22:53:48)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-10-21 23:12:23)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/arm32/src/main.c
rd59718e rcfdeedc 50 50 #include <arch/cp15.h> 51 51 #include <payload.h> 52 #include <kernel.h> 52 53 53 54 static void clean_dcache_poc(void *address, size_t size) … … 104 105 clean_dcache_poc(boot_pt, PTL0_ENTRIES * PTL0_ENTRY_SIZE); 105 106 107 uintptr_t entry = check_kernel((void *) PA2KA(BOOT_OFFSET)); 108 106 109 printf("Booting the kernel...\n"); 107 jump_to_kernel((void *) PA2KA(BOOT_OFFSET), &bootinfo);110 jump_to_kernel((void *) entry, &bootinfo); 108 111 } 109 112
Note:
See TracChangeset
for help on using the changeset viewer.