add a boot script for attached-mic.

This commit is contained in:
Tomoki Shirasawa
2013-04-15 15:00:30 +09:00
parent af7ad56263
commit d55bc511ea
4 changed files with 127 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
TARGET = @TARGET@
SBINDIR = @SBINDIR@
all::
@(cd executer/kernel; make modules)
@@ -25,6 +26,10 @@ install::
exit 1 \
;; \
esac
if [ "$(TARGET)" = attached-mic ]; then \
mkdir -p -m 755 $(SBINDIR); \
install -m 755 boot-attached-mic.sh $(SBINDIR)/boot.sh; \
fi
clean::
@(cd executer/kernel; make clean)