mirror of
git://projects.qi-hardware.com/iris.git
synced 2025-04-05 02:57:29 +03:00
fix build process, thanks to Xiangfu Liu <xiangfu@sharism.cc>
This commit is contained in:
parent
2122a743cf
commit
662df387cf
4
Makefile
4
Makefile
@ -47,15 +47,17 @@ PYPP = /usr/bin/pypp
|
|||||||
$(LD) $(LDFLAGS) $(filter %.o,$^) -o $@
|
$(LD) $(LDFLAGS) $(filter %.o,$^) -o $@
|
||||||
$(OBJCOPY) -S $(OBJCOPYFLAGS) $@
|
$(OBJCOPY) -S $(OBJCOPYFLAGS) $@
|
||||||
|
|
||||||
fs/%.elf: source/crt0.o source/%.o
|
fs/%.elf: source/crt0.o source/%.o fs/init.config
|
||||||
$(LD) $(LDFLAGS) $(filter %.o,$^) -o $@
|
$(LD) $(LDFLAGS) $(filter %.o,$^) -o $@
|
||||||
$(OBJCOPY) -S $(OBJCOPYFLAGS) $@
|
$(OBJCOPY) -S $(OBJCOPYFLAGS) $@
|
||||||
|
|
||||||
fs/%: %
|
fs/%: %
|
||||||
|
test -d fs || mkdir fs
|
||||||
ln -s ../$< $@
|
ln -s ../$< $@
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f *.o boot-programs/*.o $(BUILT_SOURCES) $(ARCH_CLEAN_FILES)
|
rm -f *.o boot-programs/*.o $(BUILT_SOURCES) $(ARCH_CLEAN_FILES)
|
||||||
|
rm -rf fs/
|
||||||
|
|
||||||
debug:
|
debug:
|
||||||
stty -F $(SERIAL) raw 9600
|
stty -F $(SERIAL) raw 9600
|
||||||
|
@ -44,7 +44,7 @@ boot_threads = $(standard_boot_programs) $(sd_boot_programs)
|
|||||||
threadlist = mips/nanonote/threadlist-sd
|
threadlist = mips/nanonote/threadlist-sd
|
||||||
ARCH_CXXFLAGS = -DNUM_THREADS=4
|
ARCH_CXXFLAGS = -DNUM_THREADS=4
|
||||||
all: iris-sd.tar
|
all: iris-sd.tar
|
||||||
iris-sd.tar: $(addprefix fs/,$(addsuffix .elf,$(programs))) iris.raw init.config
|
iris-sd.tar: $(addprefix fs/,$(addsuffix .elf,$(programs))) iris.raw fs/init.config
|
||||||
mkimage -A mips -T kernel -a $(load) -e a$(shell /bin/sh -c '$(OBJDUMP) -t iris.elf | grep __start$$ | cut -b2-8') -n Iris -d iris.raw fs/uimage | sed -e 's/:/;/g'
|
mkimage -A mips -T kernel -a $(load) -e a$(shell /bin/sh -c '$(OBJDUMP) -t iris.elf | grep __start$$ | cut -b2-8') -n Iris -d iris.raw fs/uimage | sed -e 's/:/;/g'
|
||||||
cd fs && tar cvf ../$@ uimage init.config $(addsuffix .elf,$(programs)) --dereference
|
cd fs && tar cvf ../$@ uimage init.config $(addsuffix .elf,$(programs)) --dereference
|
||||||
endif
|
endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user