2008-01-29 10:51:52 +00:00
|
|
|
#
|
2010-04-12 23:15:56 +00:00
|
|
|
# Copyright (C) 2006-2010 OpenWrt.org
|
2006-06-27 00:35:46 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2006-11-12 01:18:54 +00:00
|
|
|
|
2007-09-08 19:55:42 +00:00
|
|
|
override TARGET_BUILD=
|
2006-11-18 21:12:18 +00:00
|
|
|
include $(INCLUDE_DIR)/prereq.mk
|
2006-11-12 01:18:54 +00:00
|
|
|
include $(INCLUDE_DIR)/kernel.mk
|
2007-04-29 01:30:48 +00:00
|
|
|
include $(INCLUDE_DIR)/host.mk
|
2007-08-03 01:21:41 +00:00
|
|
|
|
2008-08-16 16:59:47 +00:00
|
|
|
.NOTPARALLEL:
|
2007-08-03 01:21:41 +00:00
|
|
|
override MAKEFLAGS=
|
|
|
|
override MAKE:=$(SUBMAKE)
|
2007-08-07 00:04:25 +00:00
|
|
|
KDIR=$(KERNEL_BUILD_DIR)
|
2006-06-21 02:16:37 +00:00
|
|
|
|
2010-04-12 23:15:56 +00:00
|
|
|
IMG_PREFIX:=openwrt-$(BOARD)$(if $(SUBTARGET),-$(SUBTARGET))
|
|
|
|
|
2010-04-29 00:44:26 +00:00
|
|
|
ifneq ($(CONFIG_BIG_ENDIAN),)
|
|
|
|
JFFS2OPTS := --pad --big-endian --squash -v
|
|
|
|
SQUASHFS_OPTS := -be
|
2006-06-21 02:16:37 +00:00
|
|
|
else
|
2010-04-29 00:44:26 +00:00
|
|
|
JFFS2OPTS := --pad --little-endian --squash -v
|
|
|
|
SQUASHFS_OPTS := -le
|
2006-06-21 02:16:37 +00:00
|
|
|
endif
|
|
|
|
|
2010-04-13 21:36:58 +00:00
|
|
|
ifeq ($(CONFIG_JFFS2_RTIME),y)
|
2010-04-29 00:44:26 +00:00
|
|
|
JFFS2OPTS += -X rtime
|
2010-04-13 21:36:58 +00:00
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_JFFS2_ZLIB),y)
|
2010-04-29 00:44:26 +00:00
|
|
|
JFFS2OPTS += -X zlib
|
2010-04-13 21:36:58 +00:00
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_JFFS2_LZMA),y)
|
2010-04-29 00:44:26 +00:00
|
|
|
JFFS2OPTS += -X lzma --compression-mode=size
|
2010-04-13 21:36:58 +00:00
|
|
|
endif
|
|
|
|
ifneq ($(CONFIG_JFFS2_RTIME),y)
|
2010-04-29 00:44:26 +00:00
|
|
|
JFFS2OPTS += -x rtime
|
2010-04-13 21:36:58 +00:00
|
|
|
endif
|
|
|
|
ifneq ($(CONFIG_JFFS2_ZLIB),y)
|
2010-04-29 00:44:26 +00:00
|
|
|
JFFS2OPTS += -x zlib
|
2010-04-13 21:36:58 +00:00
|
|
|
endif
|
|
|
|
ifneq ($(CONFIG_JFFS2_LZMA),y)
|
2010-04-29 00:44:26 +00:00
|
|
|
JFFS2OPTS += -x lzma
|
2010-04-13 21:36:58 +00:00
|
|
|
endif
|
2010-04-13 14:07:22 +00:00
|
|
|
|
2010-02-11 08:37:57 +00:00
|
|
|
ifneq ($(CONFIG_LINUX_2_4)$(CONFIG_LINUX_2_6_25),)
|
2010-04-29 00:44:26 +00:00
|
|
|
USE_SQUASHFS3 := y
|
2009-05-15 12:10:47 +00:00
|
|
|
endif
|
|
|
|
|
2009-10-26 12:06:47 +00:00
|
|
|
ifneq ($(USE_SQUASHFS3),)
|
2010-04-29 00:44:26 +00:00
|
|
|
MKSQUASHFS_CMD := $(STAGING_DIR_HOST)/bin/mksquashfs-lzma
|
2009-10-26 12:06:47 +00:00
|
|
|
else
|
2010-04-29 00:44:26 +00:00
|
|
|
MKSQUASHFS_CMD := $(STAGING_DIR_HOST)/bin/mksquashfs4
|
|
|
|
SQUASHFS_OPTS := -comp lzma -processors 1
|
2009-05-15 12:10:47 +00:00
|
|
|
endif
|
|
|
|
|
2007-07-16 22:06:45 +00:00
|
|
|
JFFS2_BLOCKSIZE ?= 64k 128k
|
|
|
|
|
2007-03-02 01:23:36 +00:00
|
|
|
define add_jffs2_mark
|
|
|
|
echo -ne '\xde\xad\xc0\xde' >> $(1)
|
|
|
|
endef
|
|
|
|
|
2009-11-24 13:55:40 +00:00
|
|
|
# pad to 4k, 8k, 64k, 128k and add jffs2 end-of-filesystem mark
|
2007-03-02 01:23:36 +00:00
|
|
|
define prepare_generic_squashfs
|
2009-11-24 13:55:40 +00:00
|
|
|
dd if=$(1) of=$(KDIR)/tmpfile.0 bs=4k conv=sync
|
|
|
|
$(call add_jffs2_mark,$(KDIR)/tmpfile.0)
|
|
|
|
dd if=$(KDIR)/tmpfile.0 of=$(KDIR)/tmpfile.1 bs=4k conv=sync
|
2007-03-02 01:23:36 +00:00
|
|
|
$(call add_jffs2_mark,$(KDIR)/tmpfile.1)
|
2009-11-24 13:55:40 +00:00
|
|
|
dd if=$(KDIR)/tmpfile.1 of=$(KDIR)/tmpfile.2 bs=64k conv=sync
|
|
|
|
$(call add_jffs2_mark,$(KDIR)/tmpfile.2)
|
|
|
|
dd if=$(KDIR)/tmpfile.2 of=$(1) bs=64k conv=sync
|
2007-03-02 01:23:36 +00:00
|
|
|
$(call add_jffs2_mark,$(1))
|
2009-11-24 13:55:40 +00:00
|
|
|
rm -f $(KDIR)/tmpfile.*
|
2007-03-02 01:23:36 +00:00
|
|
|
endef
|
|
|
|
|
2010-04-29 00:44:26 +00:00
|
|
|
|
|
|
|
ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),)
|
|
|
|
|
|
|
|
define Image/BuildKernel
|
|
|
|
cp $(KDIR)/vmlinux.elf $(BIN_DIR)/$(IMG_PREFIX)-vmlinux.elf
|
|
|
|
$(call Image/Build/Initramfs)
|
|
|
|
endef
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
ifneq ($(CONFIG_TARGET_ROOTFS_JFFS2),)
|
2007-07-22 18:29:59 +00:00
|
|
|
define Image/mkfs/jffs2/sub
|
2007-07-26 06:43:29 +00:00
|
|
|
# FIXME: removing this line will cause strange behaviour in the foreach loop below
|
2010-04-13 14:07:22 +00:00
|
|
|
$(STAGING_DIR_HOST)/bin/mkfs.jffs2 $(JFFS2OPTS) -e $(patsubst %k,%KiB,$(1)) -o $(KDIR)/root.jffs2-$(1) -d $(TARGET_DIR) -v 2>&1 1>/dev/null | awk '/^.+$$$$/'
|
2007-07-22 18:29:59 +00:00
|
|
|
$(call add_jffs2_mark,$(KDIR)/root.jffs2-$(1))
|
|
|
|
$(call Image/Build,jffs2-$(1))
|
|
|
|
endef
|
2006-06-21 02:16:37 +00:00
|
|
|
define Image/mkfs/jffs2
|
2007-07-22 18:29:59 +00:00
|
|
|
$(foreach SZ,$(JFFS2_BLOCKSIZE),$(call Image/mkfs/jffs2/sub,$(SZ)))
|
2006-06-21 02:16:37 +00:00
|
|
|
endef
|
|
|
|
endif
|
2007-10-18 20:30:18 +00:00
|
|
|
|
2010-04-29 00:44:26 +00:00
|
|
|
ifneq ($(CONFIG_TARGET_ROOTFS_SQUASHFS),)
|
2006-06-21 02:16:37 +00:00
|
|
|
define Image/mkfs/squashfs
|
2010-03-21 17:16:50 +00:00
|
|
|
@mkdir -p $(TARGET_DIR)/overlay
|
2009-05-15 12:10:47 +00:00
|
|
|
$(MKSQUASHFS_CMD) $(TARGET_DIR) $(KDIR)/root.squashfs -nopad -noappend -root-owned $(SQUASHFS_OPTS)
|
2006-06-21 02:16:37 +00:00
|
|
|
$(call Image/Build,squashfs)
|
|
|
|
endef
|
|
|
|
endif
|
2007-10-18 20:30:18 +00:00
|
|
|
|
2010-04-29 00:44:26 +00:00
|
|
|
ifneq ($(CONFIG_TARGET_ROOTFS_UBIFS),)
|
2010-01-11 01:10:45 +00:00
|
|
|
define Image/mkfs/ubifs
|
|
|
|
$(CP) ./ubinize.cfg $(KDIR)
|
|
|
|
$(STAGING_DIR_HOST)/bin/mkfs.ubifs $(UBIFS_OPTS) -o $(KDIR)/root.ubifs -d $(TARGET_DIR)
|
|
|
|
(cd $(KDIR); \
|
2010-03-05 04:14:03 +00:00
|
|
|
$(STAGING_DIR_HOST)/bin/ubinize $(UBINIZE_OPTS) -o $(KDIR)/root.ubi ubinize.cfg)
|
|
|
|
$(call Image/Build,ubi)
|
2010-01-11 01:10:45 +00:00
|
|
|
endef
|
|
|
|
endif
|
2008-10-07 08:01:55 +00:00
|
|
|
|
2010-04-29 00:44:26 +00:00
|
|
|
endif
|
2006-10-19 03:27:24 +00:00
|
|
|
|
2010-04-29 00:44:26 +00:00
|
|
|
ifneq ($(CONFIG_TARGET_ROOTFS_CPIOGZ),)
|
2010-04-28 14:27:03 +00:00
|
|
|
define Image/mkfs/cpiogz
|
|
|
|
( cd $(TARGET_DIR); find . | cpio -o -H newc | gzip -9 >$(BIN_DIR)/$(IMG_PREFIX)-rootfs.cpio.gz )
|
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
2010-04-29 00:44:26 +00:00
|
|
|
ifneq ($(CONFIG_TARGET_ROOTFS_TARGZ),)
|
2010-04-28 14:47:43 +00:00
|
|
|
define Image/mkfs/targz
|
|
|
|
$(TAR) -zcf $(BIN_DIR)/$(IMG_PREFIX)-rootfs.tar.gz --numeric-owner --owner=0 --group=0 -C $(TARGET_DIR)/ .
|
2010-04-28 14:27:03 +00:00
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
2010-04-29 00:44:26 +00:00
|
|
|
ifneq ($(CONFIG_TARGET_ROOTFS_EXT2FS),)
|
2010-05-05 06:14:32 +00:00
|
|
|
E2SIZE=$(shell echo $$(($(CONFIG_TARGET_ROOTFS_PARTSIZE)*1024)))
|
2007-10-18 20:30:18 +00:00
|
|
|
|
2006-08-17 07:20:08 +00:00
|
|
|
define Image/mkfs/ext2
|
2009-02-17 03:05:10 +00:00
|
|
|
$(STAGING_DIR_HOST)/bin/genext2fs -U -b $(E2SIZE) -N $(CONFIG_TARGET_ROOTFS_MAXINODE) -d $(TARGET_DIR)/ $(KDIR)/root.ext2
|
2006-07-20 21:06:47 +00:00
|
|
|
$(call Image/Build,ext2)
|
2006-08-17 07:20:08 +00:00
|
|
|
endef
|
2006-06-21 02:16:37 +00:00
|
|
|
endif
|
|
|
|
|
2010-04-29 00:44:26 +00:00
|
|
|
ifneq ($(CONFIG_TARGET_ROOTFS_ISO),)
|
2008-01-29 10:51:52 +00:00
|
|
|
define Image/mkfs/iso
|
|
|
|
$(call Image/Build,iso)
|
|
|
|
endef
|
2007-10-18 20:30:18 +00:00
|
|
|
endif
|
2007-10-08 18:53:19 +00:00
|
|
|
|
2006-08-17 07:20:08 +00:00
|
|
|
|
2006-06-21 02:16:37 +00:00
|
|
|
define Image/mkfs/prepare/default
|
2010-01-22 23:10:57 +00:00
|
|
|
- $(FIND) $(TARGET_DIR) -type f -not -perm +0100 -not -name 'ssh_host*' -print0 | $(XARGS) -0 chmod 0644
|
|
|
|
- $(FIND) $(TARGET_DIR) -type f -perm +0100 -print0 | $(XARGS) -0 chmod 0755
|
|
|
|
- $(FIND) $(TARGET_DIR) -type d -print0 | $(XARGS) -0 chmod 0755
|
2007-08-07 00:04:25 +00:00
|
|
|
$(INSTALL_DIR) $(TARGET_DIR)/tmp
|
|
|
|
chmod 0777 $(TARGET_DIR)/tmp
|
2006-06-21 02:16:37 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/mkfs/prepare
|
|
|
|
$(call Image/mkfs/prepare/default)
|
|
|
|
endef
|
|
|
|
|
2010-04-29 00:44:26 +00:00
|
|
|
|
|
|
|
define Image/Checksum
|
|
|
|
( cd ${BIN_DIR} ; \
|
|
|
|
$(FIND) -maxdepth 1 -type f \! -name 'md5sums' -printf "%P\n" | sort | xargs \
|
|
|
|
md5sum --binary > md5sums \
|
|
|
|
)
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
2006-06-21 02:16:37 +00:00
|
|
|
define BuildImage
|
|
|
|
|
2010-04-29 00:44:26 +00:00
|
|
|
download:
|
|
|
|
prepare:
|
2008-01-29 10:51:52 +00:00
|
|
|
|
2010-04-29 00:44:26 +00:00
|
|
|
ifeq ($(IB),)
|
|
|
|
compile: compile-targets FORCE
|
|
|
|
$(call Build/Compile)
|
|
|
|
else
|
|
|
|
compile:
|
|
|
|
endif
|
2006-06-21 02:16:37 +00:00
|
|
|
|
2010-04-29 00:44:26 +00:00
|
|
|
ifeq ($(IB),)
|
|
|
|
install: compile install-targets FORCE
|
|
|
|
$(call Image/Prepare)
|
|
|
|
$(call Image/mkfs/prepare)
|
|
|
|
$(call Image/BuildKernel)
|
|
|
|
$(call Image/mkfs/cpiogz)
|
|
|
|
$(call Image/mkfs/targz)
|
|
|
|
$(call Image/mkfs/ext2)
|
|
|
|
$(call Image/mkfs/iso)
|
|
|
|
$(call Image/mkfs/jffs2)
|
|
|
|
$(call Image/mkfs/squashfs)
|
|
|
|
$(call Image/mkfs/ubifs)
|
|
|
|
$(call Image/Checksum)
|
|
|
|
else
|
|
|
|
install: compile install-targets
|
|
|
|
$(call Image/BuildKernel)
|
|
|
|
$(call Image/mkfs/cpiogz)
|
|
|
|
$(call Image/mkfs/targz)
|
|
|
|
$(call Image/mkfs/ext2)
|
|
|
|
$(call Image/mkfs/iso)
|
|
|
|
$(call Image/mkfs/jffs2)
|
|
|
|
$(call Image/mkfs/squashfs)
|
|
|
|
$(call Image/mkfs/ubifs)
|
|
|
|
$(call Image/Checksum)
|
|
|
|
endif
|
2006-12-08 04:06:29 +00:00
|
|
|
|
2010-04-29 00:44:26 +00:00
|
|
|
ifeq ($(IB),)
|
|
|
|
clean: clean-targets
|
|
|
|
$(call Build/Clean)
|
|
|
|
else
|
|
|
|
clean:
|
|
|
|
endif
|
2006-06-21 02:16:37 +00:00
|
|
|
|
2010-04-29 00:44:26 +00:00
|
|
|
compile-targets:
|
|
|
|
install-targets:
|
|
|
|
clean-targets:
|
|
|
|
|
|
|
|
endef
|