# Iris: micro-kernel for a capability-based operating system. # mips/Makefile.arch: mips-specific parts of the build rules # Copyright 2009 Bas Wijnen # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . load = 0x80000000 ARCH_CXXFLAGS = -DNUM_THREADS=2 ARCH_CPPFLAGS = -Imips -Wa,-mips32 CROSS = mipsel-linux-gnu- OBJDUMP = $(CROSS)objdump junk = mdebug.abi32 reginfo comment pdr OBJCOPYFLAGS = $(addprefix --remove-section=.,$(junk)) arch_iris_sources = mips/interrupts.cc mips/arch.cc boot_sources = mips/init.cc arch_headers = mips/arch.hh mips/jz4730.hh boot_threads = init gpio lcd uimage: mips/entry.o: $(boot_threads) mips/init.o: TARGET_FLAGS = -I/usr/include $(boot_threads): TARGET_FLAGS = -I. $(addprefix boot-programs/,$(addsuffix .cc,$(boot_threads))): boot-programs/devices.hh lcd: boot-programs/charset.data boot-programs/charset.data: boot-programs/charset $< > $@ # Transform ':' into ';' so vim doesn't think there are errors. uimage: iris.raw.gz Makefile mips/Makefile.arch mkimage -A MIPS -O Linux -C gzip -a $(load) -e 0xa$(shell /bin/sh -c '$(OBJDUMP) -t iris | grep __start$$ | cut -b2-8') -n "Iris" -d $< $@ | sed -e 's/:/;/g' %.o:%.S Makefile mips/Makefile.arch mips/arch.hh $(CC) $(CPPFLAGS) $(TARGET_FLAGS) -DKERNEL_STACK_SIZE=0x2000 -c $< -o $@ # entry.o must be the first file. boot.o must be the first of the init objects (which can be freed after loading). iris: mips/entry.o $(subst .cc,.o,$(iris_sources)) mips/boot.o $(subst .cc,.o,$(boot_sources)) $(LD) --omagic -Ttext $(load) $^ -o $@ %.raw: % $(OBJCOPY) -S $(OBJCOPYFLAGS) -Obinary $< $@ %.gz: % gzip < $< > $@ ARCH_CLEAN_FILES = uimage $(boot_threads) mips/*.o boot-programs/charset.data iris iris.raw iris.raw.gz