URL
https://opencores.org/ocsvn/eco32/eco32/trunk
Subversion Repositories eco32
Compare Revisions
- This comparison shows the changes necessary to convert path
/eco32/trunk/disk/tools/fs-Linux/mkpboot
- from Rev 265 to Rev 267
- ↔ Reverse comparison
Rev 265 → Rev 267
/pbr.s
66,11 → 66,11
|
; messages |
strtmsg: |
.byte "You didn't believe that this tiny program is" |
.byte "a full-fledged operating system, did you? ;-)" |
.byte "The real EOS32 is a project all by itself." |
.byte "You can find it on GitHub, under the name" |
.byte "'eos32-on-eco32'.", 0x0D, 0x0A, 0 |
.byte "You didn't expect this tiny program to be " |
.byte "a full-fledged operating system, did you? ;-) " |
.byte "The real Linux for ECO32 is a project all by " |
.byte "itself. You can find it on GitHub, under the " |
.byte "name 'linux-on-eco32'.", 0x0D, 0x0A, 0 |
hltmsg: |
.byte "bootstrap halted", 0x0D, 0x0A, 0 |
|
/Makefile
4,8 → 4,14
|
BUILD = ../../../../build |
|
.PHONY: all install clean |
|
all: pbr.bin |
|
install: pbr.bin |
mkdir -p $(BUILD)/run/fs-Linux |
cp pbr.bin $(BUILD)/run/fs-Linux |
|
pbr.bin: pbr.o |
$(BUILD)/bin/ld -h -rc 0xC0010000 -o pbr.bin pbr.o |
|