- Timestamp:
- 2012-09-07T08:12:05Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e0c836e8
- Parents:
- 131d9a4 (diff), 8cf4823 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- boot
- Files:
-
- 1 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/Makefile.common
r131d9a4 r70253688 108 108 $(USPACE_PATH)/srv/fs/cdfs/cdfs \ 109 109 $(USPACE_PATH)/srv/fs/exfat/exfat \ 110 $(USPACE_PATH)/srv/fs/udf/udf \ 110 111 $(USPACE_PATH)/srv/fs/ext2fs/ext2fs \ 111 112 $(USPACE_PATH)/srv/fs/ext4fs/ext4fs \ … … 174 175 $(USPACE_PATH)/app/mkexfat/mkexfat \ 175 176 $(USPACE_PATH)/app/mkmfs/mkmfs \ 176 $(USPACE_PATH)/app/lsusb/lsusb \177 177 $(USPACE_PATH)/app/sbi/sbi \ 178 178 $(USPACE_PATH)/app/sportdmp/sportdmp \ -
boot/arch/arm32/include/main.h
r131d9a4 r70253688 52 52 53 53 /** GXemul testarm serial console output register */ 54 #define TESTARM_SCONS_ADDR 54 #define TESTARM_SCONS_ADDR 0x10000000 55 55 56 56 /** IntegratorCP serial console output register */ 57 #define ICP_SCONS_ADDR 57 #define ICP_SCONS_ADDR 0x16000000 58 58 59 59 extern void bootstrap(void); -
boot/arch/ppc32/_link.ld.in
r131d9a4 r70253688 2 2 3 3 SECTIONS { 4 . = 0x0 1000000;4 . = 0x02000000; 5 5 .text : { 6 6 *(BOOTSTRAP); -
boot/arch/ppc32/include/arch.h
r131d9a4 r70253688 35 35 #define BOOT_OFFSET 0x8000 36 36 37 #define LOADER_ADDRESS 0x0 100000037 #define LOADER_ADDRESS 0x02000000 38 38 39 39 #ifndef __ASM__ -
boot/arch/ppc32/src/main.c
r131d9a4 r70253688 103 103 } 104 104 105 if (top >= (size_t) loader_address_pa) { 106 printf("Inflated components overlap loader area.\n"); 107 printf("The boot image is too large. Halting.\n"); 108 halt(); 109 } 110 105 111 void *balloc_base; 106 112 void *balloc_base_pa; -
boot/generic/include/printf.h
r131d9a4 r70253688 35 35 #include <typedefs.h> 36 36 #include <stdarg.h> 37 38 #ifndef NVERIFY_PRINTF 39 40 #define PRINTF_ATTRIBUTE(start, end) \ 41 __attribute__((format(gnu_printf, start, end))) 42 43 #else /* NVERIFY_PRINTF */ 44 45 #define PRINTF_ATTRIBUTE(start, end) 46 47 #endif /* NVERIFY_PRINTF */ 37 #include <printf_verify.h> 48 38 49 39 #define EOF (-1)
Note:
See TracChangeset
for help on using the changeset viewer.