summaryrefslogtreecommitdiff
path: root/target/qemu-cris
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-02-27 12:20:44 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2010-02-27 12:20:44 +0100
commit6b92f1793695460db488d5b5502a3d654ab2b572 (patch)
treed94e0565676ad92fe9f21e53a1914c0b66e0fa1c /target/qemu-cris
parent50beebab01a244a27e45ffd766377fa3fa91229a (diff)
parent74cae31f28b7b1a96f82ffe904374bf95b5054ac (diff)
Merge branch 'master' of git+ssh://wbx@openadk.org/git/openadk
Diffstat (limited to 'target/qemu-cris')
-rw-r--r--target/qemu-cris/Makefile31
1 files changed, 22 insertions, 9 deletions
diff --git a/target/qemu-cris/Makefile b/target/qemu-cris/Makefile
index 8010501c6..4384edf0e 100644
--- a/target/qemu-cris/Makefile
+++ b/target/qemu-cris/Makefile
@@ -7,17 +7,20 @@ include $(TOPDIR)/mk/modules.mk
include $(TOPDIR)/mk/kernel-build.mk
include $(TOPDIR)/mk/image.mk
-$(TOOLS_BUILD_DIR):
- mkdir -p $(TOOLS_BUILD_DIR)
-
-tools-compile: $(TOOLS_BUILD_DIR)
- $(MAKE) -C tools/mkfimage
-
-kernel-install: tools-compile
- PATH='${TARGET_PATH}' \
- cp $(LINUX_DIR)/arch/cris/boot/zImage \
+kernel-install:
+ @cp $(LINUX_DIR)/arch/cris/boot/zImage \
$(BIN_DIR)/${ADK_TARGET}-${FS}-kernel $(MAKE_TRACE)
+createinit:
+ @-rm $(LINUX_DIR)/usr/initramfs_data.cpio.* $(MAKE_TRACE)
+ $(SED) 's#^CONFIG_INITRAMFS_SOURCE.*#CONFIG_INITRAMFS_SOURCE="${BUILD_DIR}/${INITRAMFS_PIGGYBACK}"#' $(LINUX_DIR)/.config
+ echo N |$(MAKE) -C $(LINUX_DIR) V=0 CROSS_COMPILE="$(TARGET_CROSS)" ARCH=$(ARCH) \
+ CC="$(TARGET_CC)" oldconfig $(MAKE_TRACE)
+ $(MAKE) -C $(LINUX_DIR) V=1 CROSS_COMPILE="$(TARGET_CROSS)" ARCH=$(ARCH) \
+ CC="$(TARGET_CC)" $(MAKE_TRACE)
+ $(CP) $(LINUX_DIR)/arch/cris/boot/zImage \
+ $(BIN_DIR)/${ADK_TARGET}-${FS}-kernel
+
ifeq ($(FS),archive)
imageinstall: $(BIN_DIR)/$(ROOTFSUSERTARBALL)
@echo
@@ -33,5 +36,15 @@ ifeq ($(FS),initramfs)
imageinstall: $(BIN_DIR)/$(INITRAMFS)
@echo 'The kernel file is: ${BIN_DIR}/${ADK_TARGET}-${FS}-kernel'
@echo 'The initramfs image is: ${BIN_DIR}/${INITRAMFS}'
+ @echo "Start qemu with following command line:"
+ @echo 'qemu-system-cris -nographic -kernel $(BIN_DIR)/${ADK_TARGET}-${FS}-kernel'
+ @echo 'Login as user root with password linux123 via ssh or console'
+endif
+
+ifeq ($(FS),initramfs-piggyback)
+imageinstall: ${BUILD_DIR}/${INITRAMFS_PIGGYBACK} createinit
+ @echo 'The kernel file is: ${BIN_DIR}/${ADK_TARGET}-${FS}-kernel'
+ @echo "Start qemu with following command line:"
+ @echo 'qemu-system-cris -nographic -kernel $(BIN_DIR)/${ADK_TARGET}-${FS}-kernel'
@echo 'Login as user root with password linux123 via ssh or console'
endif