summaryrefslogtreecommitdiff
path: root/target/foxboard/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-01-10 16:16:44 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2010-01-10 16:16:44 +0100
commitcfc200714ddfa6d76feb836c258b1135d91a8348 (patch)
treeecc4628fc161de5044c9acb03bb63b2fd48ae75c /target/foxboard/Makefile
parent77bdac14df2e20b290cdd4bcad0ecb0e1fc446be (diff)
parent91c8ff1c3f772e0ae8d7c60a3252c5efced9fe92 (diff)
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Conflicts: package/digitemp/Makefile
Diffstat (limited to 'target/foxboard/Makefile')
-rw-r--r--target/foxboard/Makefile16
1 files changed, 11 insertions, 5 deletions
diff --git a/target/foxboard/Makefile b/target/foxboard/Makefile
index c4a64c26b..dd6e167c2 100644
--- a/target/foxboard/Makefile
+++ b/target/foxboard/Makefile
@@ -12,7 +12,7 @@ $(TOOLS_BUILD_DIR):
tools-compile: $(TOOLS_BUILD_DIR)
$(MAKE) -C tools/mkfimage
- #$(MAKE) -C tools/e100boot prepare compile install $(MAKE_TRACE)
+ $(MAKE) -C tools/e100boot prepare compile install
$(MAKE) -C ../tools/squashfs prepare compile install
$(INSTALL_BIN) tools/boot_linux $(BIN_DIR)/
@@ -22,10 +22,15 @@ kernel-install: tools-compile
ifeq ($(FS),squashfs)
imageinstall: $(BIN_DIR)/$(ROOTFSSQUASHFS)
- @echo
- @echo Use sudo ./boot_linux -F -i $(ROOTFSSQUASHFS) to flash
- @echo Do not forget to set network boot jumper, before you start the foxboard
- @echo 'Login as user root with password linux123 via ssh or console'
+ dd if=${BUILD_DIR}/${ROOTFSSQUASHFS} of=${BIN_DIR}/${ROOTFSSQUASHFS} \
+ bs=4063232 conv=sync $(MAKE_TRACE)
+ @if [ $$(stat --format=%s ${BIN_DIR}/${ROOTFSSQUASHFS}) -gt 4063232 ];then \
+ echo 'Image is too big!'; \
+ else \
+ echo 'Use sudo ./boot_linux -F -i $(ROOTFSSQUASHFS) to flash'; \
+ echo 'Do not forget to set the network boot jumper, before you start the foxboard'; \
+ echo 'Login as user root with password linux123 via ssh or console'; \
+ fi
endif
ifeq ($(FS),nfsroot)
imageinstall: ${BIN_DIR}/${ROOTFSTARBALL}
@@ -33,5 +38,6 @@ imageinstall: ${BIN_DIR}/${ROOTFSTARBALL}
@echo Use sudo ./boot_linux -F -i ${ADK_TARGET}-${FS}-kernel to flash the kernel
@echo Do not forget to set network boot jumper, before you start the foxboard
@echo ${ROOTFSTARBALL} is your nfs root and can be extracted on your nfs server
+ @echo 'Do not forget to create device nodes for console,null and tty in your nfsroot'
@echo 'Login as user root with password linux123 via ssh or console'
endif