summaryrefslogtreecommitdiff
path: root/target/qemu-cris/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-02-26 22:14:16 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2010-02-26 22:14:16 +0100
commit74cae31f28b7b1a96f82ffe904374bf95b5054ac (patch)
tree465bbb1cbe79b21dc0dab034ddbb2078bd02ac61 /target/qemu-cris/Makefile
parentc7f2f4bba73e53d9b5d1926b220205884bd26d4a (diff)
update qemu targets to 2.6.33
- add LZO compression choice - reactivate mdev mount in init - add correct inittab for qemu-arm
Diffstat (limited to 'target/qemu-cris/Makefile')
-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