Changeset 220ee4b in umon


Ignore:
Timestamp:
07/08/15 21:28:41 (9 years ago)
Author:
Jarielle Catbagan <jcatbagan93@…>
Branches:
master
Children:
2945559
Parents:
f344230
git-author:
Jarielle Catbagan <jcatbagan93@…> (07/08/15 21:28:41)
git-committer:
Ed Sutter <edsutterjr@…> (07/08/15 22:51:38)
Message:

BBB: Build a uMon image with a Configuration header and a GP header prepended.

Location:
ports/beagleboneblack
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • ports/beagleboneblack/Makefile

    rf344230 r220ee4b  
    8787                BIN_SIZE=$(shell wc --bytes build_$(PLATFORM)/boot.bin | cut -f 1 -d ' ') \
    8888                -o gp_header.o gp_header.S
     89        ${CC} ${ASMFLAGS} -o config_header.o config_header.S
    8990        $(OBJCOPY) -O binary gp_header.o build_$(PLATFORM)/gp_header.bin
     91        ${OBJCOPY} -O binary config_header.o build_${PLATFORM}/config_header.bin
    9092        @cat build_$(PLATFORM)/gp_header.bin build_$(PLATFORM)/boot.bin > build_$(PLATFORM)/MLO
     93        @cat build_$(PLATFORM)/config_header.bin build_$(PLATFORM)/gp_header.bin \
     94                build_$(PLATFORM)/boot.bin > build_$(PLATFORM)/rawboot.bin
    9195        @echo Boot version of uMon built under $(BUILDDIR) ...
    9296        @ls $(BUILDDIR)/boot*
    93         @echo Boot version of uMon attached with GP header build under $(BUILDDIR) ...
     97        @echo Boot version of uMon prepended with a GP header built under $(BUILDDIR) ...
    9498        @ls $(BUILDDIR)/MLO
     99        @echo Boot version of uMon prepended with a Configuration header and a GP header built
     100        @echo under $(BUILDDIR) ...
     101        @ls $(BUILDDIR)/rawboot.bin
    95102
    96103# ramtst:
Note: See TracChangeset for help on using the changeset viewer.