2009-09-27 11:23:33 +03:00
|
|
|
# Iris: micro-kernel for a capability-based operating system.
|
|
|
|
# mips/nanonote/Makefile.arch: nanonote-specific parts of the build rules
|
|
|
|
# Copyright 2009 Bas Wijnen <wijnen@debian.org>
|
|
|
|
#
|
|
|
|
# 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 <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
load = 0x80000000
|
2010-07-08 13:38:36 +03:00
|
|
|
#UDC_BOOT = set
|
2009-09-27 11:23:33 +03:00
|
|
|
|
2009-12-27 01:12:35 +02:00
|
|
|
ARCH_CPPFLAGS = -I. -Imips -Imips/nanonote -Wa,-mips32 -DNANONOTE -DUSE_SERIAL
|
2009-09-27 11:23:33 +03:00
|
|
|
CROSS = mipsel-linux-gnu-
|
|
|
|
OBJDUMP = $(CROSS)objdump
|
|
|
|
junk = mdebug.abi32 reginfo comment pdr
|
|
|
|
OBJCOPYFLAGS = $(addprefix --remove-section=.,$(junk))
|
|
|
|
LDFLAGS = --omagic -Ttext $(load)
|
|
|
|
|
|
|
|
arch_iris_sources = mips/interrupts.cc mips/arch.cc
|
|
|
|
boot_sources = mips/init.cc mips/nanonote/board.cc
|
2010-05-15 19:42:17 +03:00
|
|
|
arch_headers = mips/arch.hh mips/nanonote/jz4740.hh mips/nanonote/board.hh
|
2010-06-07 00:03:25 +03:00
|
|
|
udc_boot_programs = udc
|
|
|
|
sd_boot_programs = sd+mmc partition fat
|
|
|
|
standard_boot_programs = bootinit
|
2010-06-22 21:55:02 +03:00
|
|
|
|
2010-06-07 00:03:25 +03:00
|
|
|
programs = init gpio lcd bsquare ball buzzer metronome elfrun alarm gui nand test $(udc_boot_programs) $(sd_boot_programs) $(standard_boot_programs)
|
2010-01-14 19:14:37 +02:00
|
|
|
|
2010-06-22 21:55:02 +03:00
|
|
|
ifdef UDC_BOOT
|
|
|
|
boot_threads = $(standard_boot_programs) $(udc_boot_programs)
|
|
|
|
threadlist = mips/nanonote/threadlist-udc
|
|
|
|
ARCH_CXXFLAGS = -DNUM_THREADS=2
|
2010-01-16 17:13:54 +02:00
|
|
|
all: test
|
2010-06-22 21:55:02 +03:00
|
|
|
else
|
|
|
|
boot_threads = $(standard_boot_programs) $(sd_boot_programs)
|
|
|
|
threadlist = mips/nanonote/threadlist-sd
|
|
|
|
ARCH_CXXFLAGS = -DNUM_THREADS=4
|
|
|
|
all: iris-sd.tar
|
2010-07-12 09:55:17 +03:00
|
|
|
iris-sd.tar: $(addprefix fs/,$(addsuffix .elf,$(programs))) iris.raw fs/init.config
|
2010-07-10 21:14:54 +03:00
|
|
|
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'
|
2010-06-22 21:55:02 +03:00
|
|
|
cd fs && tar cvf ../$@ uimage init.config $(addsuffix .elf,$(programs)) --dereference
|
|
|
|
endif
|
2009-09-27 11:23:33 +03:00
|
|
|
|
2010-05-01 00:13:49 +03:00
|
|
|
test: iris.raw mips/nanonote/server/usb-server mips/nanonote/sdram-setup.raw $(addsuffix .elf,$(addprefix fs/,$(programs))) fs/init.config
|
2009-12-18 23:27:26 +02:00
|
|
|
echo "reboot 0xa$(shell /bin/sh -c '$(OBJDUMP) -t iris.elf | grep __start$$ | cut -b2-8')" | nc localhost 5050
|
2009-09-27 11:23:33 +03:00
|
|
|
|
2010-01-18 07:45:52 +02:00
|
|
|
mips/nanonote/server/usb-server: mips/nanonote/server/usb-server.ccp mips/nanonote/server/Makefile.am mips/nanonote/server/configure.ac devices.hh
|
2009-12-18 23:27:26 +02:00
|
|
|
$(MAKE) -C mips/nanonote/server
|
2009-12-26 15:17:06 +02:00
|
|
|
echo "shutdown" | nc localhost 5050
|
|
|
|
sleep 1
|
2009-12-18 23:27:26 +02:00
|
|
|
|
2009-09-27 11:23:33 +03:00
|
|
|
%.elf: %.o
|
|
|
|
$(LD) $(LDFLAGS) -o $@ $<
|
|
|
|
|
|
|
|
%.raw: %.elf
|
|
|
|
$(OBJCOPY) -S $(OBJCOPYFLAGS) -Obinary $< $@
|
|
|
|
|
|
|
|
nanonote-boot: mips/nanonote/nanonote-boot.cc mips/nanonote/sdram-setup.raw
|
|
|
|
g++ `pkg-config --cflags --libs shevek` $< -o $@ -D'STAGE1="$<"' -lusb
|
|
|
|
|
|
|
|
mips/nanonote/sdram-setup.elf: mips/nanonote/sdram-setup.ld
|
|
|
|
mips/nanonote/sdram-setup.elf: LDFLAGS = --omagic -T mips/nanonote/sdram-setup.ld
|
2010-06-07 00:03:25 +03:00
|
|
|
$(threadlist).o: $(addprefix fs/,$(addsuffix .elf,$(boot_threads)))
|
2009-09-27 11:23:33 +03:00
|
|
|
mips/boot.o: TARGET_FLAGS = -DMEMORY_SIZE="32 << 20"
|
2010-06-22 21:55:02 +03:00
|
|
|
mips/init.o: TARGET_FLAGS = -I/usr/include
|
2010-06-07 00:03:25 +03:00
|
|
|
source/bootinit.o: TARGET_FLAGS = -I/usr/include
|
2010-05-01 00:13:49 +03:00
|
|
|
source/elfrun.o: TARGET_FLAGS = -I/usr/include
|
|
|
|
source/gpio.ccp: source/nanonote-gpio.ccp
|
|
|
|
ln -s $(subst source/,,$<) $@
|
2010-06-07 00:03:25 +03:00
|
|
|
$(addprefix fs/,$(addsuffix .elf,$(boot_threads))): TARGET_FLAGS = -I.
|
|
|
|
$(addprefix fs/,$(addsuffix .elf,$(boot_threads))): LDFLAGS = -EL
|
2010-01-16 17:13:54 +02:00
|
|
|
$(addprefix fs/,$(addsuffix .elf,$(programs))): LDFLAGS = -EL
|
2010-05-01 00:13:49 +03:00
|
|
|
source/lcd.o: source/charset.data
|
2009-09-27 11:23:33 +03:00
|
|
|
|
2010-01-16 17:13:54 +02:00
|
|
|
source/charset.data: source/charset
|
2009-09-27 11:23:33 +03:00
|
|
|
$< > $@
|
|
|
|
|
|
|
|
%.o:%.S Makefile Makefile.arch mips/arch.hh
|
|
|
|
$(CC) $(CPPFLAGS) $(TARGET_FLAGS) -DKERNEL_STACK_SIZE=0x2000 -c $< -o $@
|
|
|
|
|
|
|
|
# entry.o must be the first file. threadlist.o must be the first of the init objects (which can be freed after loading).
|
2010-06-07 00:03:25 +03:00
|
|
|
iris.elf: mips/entry.o $(subst .cc,.o,$(iris_sources)) $(threadlist).o mips/boot.o $(subst .cc,.o,$(boot_sources))
|
2009-09-27 11:23:33 +03:00
|
|
|
$(LD) $(LDFLAGS) $^ -o $@
|
|
|
|
|
2009-12-26 15:17:06 +02:00
|
|
|
server:
|
|
|
|
while mips/nanonote/server/usb-server ; do : ; done
|
|
|
|
|
2009-12-31 12:22:25 +02:00
|
|
|
servers:
|
|
|
|
while : ; do $(MAKE) server ; done
|
|
|
|
|
2010-01-16 17:13:54 +02:00
|
|
|
setup:
|
2010-01-30 10:21:56 +02:00
|
|
|
x-terminal-emulator -e make debug
|
2010-01-16 17:13:54 +02:00
|
|
|
x-terminal-emulator -e make servers
|
|
|
|
|
|
|
|
ARCH_CLEAN_FILES = $(boot_sources) $(addsuffix .elf,$(boot_threads)) $(arch_headers) devices.hh keys.hh mips/*.o mips/nanonote/*.o source/charset.data iris.elf iris.raw mips/nanonote/sdram-setup.elf mips/nanonote/sdram-setup.raw
|
2009-12-11 10:43:42 +02:00
|
|
|
|
|
|
|
.PRECIOUS: mips/arch.hh mips/nanonote/jz4740.hh mips/nanonote/board.hh
|
2010-01-16 17:13:54 +02:00
|
|
|
.PHONY: test all monitor server servers setup
|