Changeset 2df8561 in mainline


Ignore:
Timestamp:
2012-03-13T20:21:32Z (12 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d7c801bb
Parents:
d1714e8
Message:

boot: Makefile.uboot takes laddr and saddr from outside. beagleboardxm uses Makefile.uboot

Only include services that are useful for the machine that is built.

Location:
boot
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • boot/Makefile.uboot

    rd1714e8 r2df8561  
    4040
    4141$(POST_OUTPUT): $(BIN_OUTPUT)
    42         $(MKUIMAGE) -name "$(IMAGE_NAME)" -laddr 0x30008000 -saddr 0x30008000 $< $@
     42        $(MKUIMAGE) -name "$(IMAGE_NAME)" -laddr $(LADDR) -saddr $(SADDR) $< $@
    4343
    4444clean:
  • boot/arch/arm32/Makefile.inc

    rd1714e8 r2df8561  
    3030        BOOT_OUTPUT = image.boot
    3131        POST_OUTPUT = $(ROOT_PATH)/uImage.bin
     32        LADDR = 0x30008000
     33        SADDR = 0x30008000
     34        POSTBUILD = Makefile.uboot
     35endif
     36
     37ifeq ($(MACHINE), beagleboardxm)
     38        BOOT_OUTPUT = image.boot
     39        POST_OUTPUT = $(ROOT_PATH)/uImage.bin
     40        LADDR = 0x80000000
     41        SADDR = 0x80000000
    3242        POSTBUILD = Makefile.uboot
    3343endif
     
    4050ENDIANESS = LE
    4151
     52ifeq ($(MACHINE), gta02)
    4253RD_SRVS_ESSENTIAL += \
    4354        $(USPACE_PATH)/srv/hid/s3c24xx_ts/s3c24ts \
    4455        $(USPACE_PATH)/srv/hw/char/s3c24xx_uart/s3c24ser
     56endif
    4557
     58ifeq ($(MACHINE), gxemul)
    4659RD_SRVS_NON_ESSENTIAL += \
    4760        $(USPACE_PATH)/srv/bd/gxe_bd/gxe_bd
     61endif
    4862
    4963SOURCES = \
Note: See TracChangeset for help on using the changeset viewer.