Changeset bc58e2b in mainline


Ignore:
Timestamp:
2010-06-22T20:15:27Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f4660690
Parents:
928d983
Message:

uImage needs to be built from a raw binary image.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • boot/Makefile.uboot

    r928d983 rbc58e2b  
    3232
    3333IMAGE_NAME=HelenOS-$(RELEASE)
     34BIN_OUTPUT=image.bin
    3435
    3536all: $(POST_OUTPUT)
    3637
    37 $(POST_OUTPUT): $(BOOT_OUTPUT)
    38         $(MKUIMAGE) -name "$(IMAGE_NAME)" -laddr 0x00000000 -saddr 0x00000000 \
     38$(BIN_OUTPUT): $(BOOT_OUTPUT)
     39        $(OBJCOPY) -O binary $< $@
     40
     41$(POST_OUTPUT): $(BIN_OUTPUT)
     42        $(MKUIMAGE) -name "$(IMAGE_NAME)" -laddr 0x30000000 -saddr 0x30000000 \
    3943    $< $@
    4044
    4145clean:
     46        rm -f $(BIN_OUTPUT)
Note: See TracChangeset for help on using the changeset viewer.