Changeset 70253688 in mainline for boot


Ignore:
Timestamp:
2012-09-07T08:12:05Z (13 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
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.
Message:

Merge mainline changes

Location:
boot
Files:
1 added
6 edited

Legend:

Unmodified
Added
Removed
  • boot/Makefile.common

    r131d9a4 r70253688  
    108108        $(USPACE_PATH)/srv/fs/cdfs/cdfs \
    109109        $(USPACE_PATH)/srv/fs/exfat/exfat \
     110        $(USPACE_PATH)/srv/fs/udf/udf \
    110111        $(USPACE_PATH)/srv/fs/ext2fs/ext2fs \
    111112        $(USPACE_PATH)/srv/fs/ext4fs/ext4fs \
     
    174175        $(USPACE_PATH)/app/mkexfat/mkexfat \
    175176        $(USPACE_PATH)/app/mkmfs/mkmfs \
    176         $(USPACE_PATH)/app/lsusb/lsusb \
    177177        $(USPACE_PATH)/app/sbi/sbi \
    178178        $(USPACE_PATH)/app/sportdmp/sportdmp \
  • boot/arch/arm32/include/main.h

    r131d9a4 r70253688  
    5252
    5353/** GXemul testarm serial console output register */
    54 #define TESTARM_SCONS_ADDR      0x10000000
     54#define TESTARM_SCONS_ADDR      0x10000000
    5555
    5656/** IntegratorCP serial console output register */
    57 #define ICP_SCONS_ADDR          0x16000000
     57#define ICP_SCONS_ADDR          0x16000000
    5858
    5959extern void bootstrap(void);
  • boot/arch/ppc32/_link.ld.in

    r131d9a4 r70253688  
    22
    33SECTIONS {
    4         . = 0x01000000;
     4        . = 0x02000000;
    55        .text : {
    66                *(BOOTSTRAP);
  • boot/arch/ppc32/include/arch.h

    r131d9a4 r70253688  
    3535#define BOOT_OFFSET  0x8000
    3636
    37 #define LOADER_ADDRESS  0x01000000
     37#define LOADER_ADDRESS  0x02000000
    3838
    3939#ifndef __ASM__
  • boot/arch/ppc32/src/main.c

    r131d9a4 r70253688  
    103103        }
    104104       
     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       
    105111        void *balloc_base;
    106112        void *balloc_base_pa;
  • boot/generic/include/printf.h

    r131d9a4 r70253688  
    3535#include <typedefs.h>
    3636#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>
    4838
    4939#define EOF  (-1)
Note: See TracChangeset for help on using the changeset viewer.