Changeset 4872160 in mainline for boot/arch/arm32/Makefile.inc


Ignore:
Timestamp:
2010-05-04T10:44:55Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
568db0f
Parents:
bb252ca
Message:

new boot infrastructure

  • more code and metadata unification
  • import of up-to-date implementations from the kernel
  • the boot loaders should behave more similarly on all platforms
  • support for deflate compressed (LZ77) boot components
    • this again allows feasible boot images to be created on mips32
  • IA64 is still not booting
    • the broken forked GNU EFI library has been removed, a replacement of the functionality is on its way
File:
1 edited

Legend:

Unmodified
Added
Removed
  • boot/arch/arm32/Makefile.inc

    rbb252ca r4872160  
    2727#
    2828
    29 include Makefile.common
     29BFD_NAME = elf32-littlearm
     30BFD_OUTPUT = $(BFD_NAME)
     31BFD_ARCH = arm
    3032
    31 build: $(BASE)/image.boot
     33BITS = 32
     34ENDIANESS = LE
     35PAGE_SIZE = 4096
    3236
    33 $(BASE)/image.boot: $(COMPONENTS) $(INIT_TASKS) $(RD_SRVS) $(RD_APPS) $(CFG)
    34         $(MAKE) -C arch/$(BARCH)/loader PRECHECK=$(PRECHECK)
    35         cp arch/$(BARCH)/loader/image.boot $@
     37RD_SRVS += \
     38        $(USPACE_PATH)/srv/bd/gxe_bd/gxe_bd
    3639
    37 clean:
    38         $(MAKE) -C arch/$(BARCH)/loader clean
    39         rm -f $(BASE)/image.boot
     40SOURCES = \
     41        arch/$(BARCH)/src/asm.S \
     42        arch/$(BARCH)/src/main.c \
     43        arch/$(BARCH)/src/mm.c \
     44        arch/$(BARCH)/src/putchar.c \
     45        $(COMPS_C) \
     46        genarch/src/division.c \
     47        generic/src/printf_core.c \
     48        generic/src/vprintf.c \
     49        generic/src/printf.c \
     50        generic/src/str.c \
     51        generic/src/version.c \
     52        generic/src/inflate.c
Note: See TracChangeset for help on using the changeset viewer.