expat: update to 2.6.2
[openadk.git] / target / cris / Makefile
blob38632d6bb8250a128e99caf9be7c04859fb9ad80
1 # This file is part of the OpenADK project. OpenADK is copyrighted
2 # material, please see the LICENCE file in the top-level directory.
4 include $(ADK_TOPDIR)/rules.mk
5 include $(ADK_TOPDIR)/mk/kernel-build.mk
6 include $(ADK_TOPDIR)/mk/image.mk
8 KERNEL:=$(LINUX_DIR)/arch/cris/boot/Image
9 QEMU_ARGS:=-M axis-dev88 -nographic -monitor none
11 # target helper text
12 ifeq ($(ADK_TARGET_FS),archive)
13 targethelp:
14 @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSTARBALL)"
15 endif
17 ifeq ($(ADK_TARGET_FS),initramfs)
18 targethelp:
19 @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
20 @echo 'The initramfs image is: ${FW_DIR}/${INITRAMFS}'
21 ifeq ($(ADK_TARGET_QEMU),y)
22 @echo "Start qemu with following command line:"
23 @echo 'qemu-system-${ADK_TARGET_ARCH} ${QEMU_ARGS} -kernel $(FW_DIR)/$(TARGET_KERNEL) -initrd ${FW_DIR}/${INITRAMFS}'
24 endif
25 endif
27 ifeq ($(ADK_TARGET_FS),initramfsarchive)
28 targethelp:
29 @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
30 @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSUSERTARBALL)"
31 endif
32 ifeq ($(ADK_TARGET_FS),initramfspiggyback)
33 targethelp:
34 @echo 'The kernel+initramfs file is: $(FW_DIR)/${TARGET_KERNEL}'
35 ifeq ($(ADK_TARGET_QEMU),y)
36 @echo "Start qemu with following command line:"
37 @echo 'qemu-system-${ADK_TARGET_ARCH} ${QEMU_ARGS} -kernel $(FW_DIR)/$(TARGET_KERNEL)'
38 endif
39 endif
40 ifeq ($(ADK_TARGET_FS),nfsroot)
41 targethelp:
42 @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
43 @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSUSERTARBALL)"
44 @echo Use sudo ./boot_linux -F -i $(BIN_DIR)/${TARGET_KERNEL} to flash the kernel
45 @echo Do not forget to set network boot jumper, before you start the foxboard
46 endif
47 ifeq ($(ADK_TARGET_FS),squashfs)
48 targethelp:
49 @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
50 @echo "The RootFS image is: $(FW_DIR)/$(ROOTFSSQUASHFS)"
51 endif
52 ifeq ($(ADK_TARGET_FS),jffs2)
53 targethelp:
54 @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
55 @echo "The RootFS image is: $(FW_DIR)/$(ROOTFSJFFS2)"
56 endif
58 kernel-strip:
59 @cp $(KERNEL) $(BUILD_DIR)/$(TARGET_KERNEL)
61 kernel-install: kernel-strip
62 @cp $(BUILD_DIR)/$(TARGET_KERNEL) $(FW_DIR)/$(TARGET_KERNEL)
64 # filesystem specific targets
65 ifeq ($(ADK_TARGET_FS),archive)
66 imageinstall: $(FW_DIR)/$(ROOTFSTARBALL) targethelp
67 endif
68 ifeq ($(ADK_TARGET_FS),initramfs)
69 imageinstall: kernel-install $(FW_DIR)/$(INITRAMFS) targethelp
70 endif
71 ifeq ($(ADK_TARGET_FS),initramfsarchive)
72 imageinstall: kernel-install $(FW_DIR)/$(ROOTFSUSERTARBALL) targethelp
73 endif
74 ifeq ($(ADK_TARGET_FS),initramfspiggyback)
75 imageinstall: createinitramfs targethelp
76 endif
77 ifeq ($(ADK_TARGET_FS),nfsroot)
78 imageinstall: kernel-install $(FW_DIR)/$(ROOTFSUSERTARBALL) targethelp
79 endif
80 ifeq ($(ADK_TARGET_FS),squashfs)
81 imageinstall: $(BUILD_DIR)/root.squashfs kernel-install targethelp
82 endif
83 ifeq ($(ADK_TARGET_FS),jffs2)
84 imageinstall: kernel-install $(FW_DIR)/$(ROOTFSJFFS2) targethelp
85 endif