2010-11-08 07:31:36 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2010 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
include $(INCLUDE_DIR)/image.mk
|
|
|
|
|
|
|
|
define Image/BuildKernel
|
2015-05-27 15:34:38 +00:00
|
|
|
cp $(KDIR)/$(KERNELNAME) $(BIN_DIR)/$(IMG_PREFIX)-vmlinux.elf
|
2014-02-27 00:12:53 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/BuildKernel/Initramfs
|
2015-05-27 15:34:38 +00:00
|
|
|
cp $(KDIR)/$(KERNELNAME)-initramfs $(BIN_DIR)/$(IMG_PREFIX)-vmlinux-initramfs.elf
|
2010-11-08 07:31:36 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build/squashfs
|
|
|
|
$(call prepare_generic_squashfs,$(KDIR)/root.squashfs)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build
|
|
|
|
$(call Image/Build/$(1))
|
2015-09-14 20:10:04 +00:00
|
|
|
$(call Build/sdcard-img)
|
2015-05-27 15:34:38 +00:00
|
|
|
dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/$(IMG_PREFIX)-root.$(1) bs=128k conv=sync
|
2010-11-08 07:31:36 +00:00
|
|
|
endef
|
|
|
|
|
2015-09-14 20:10:04 +00:00
|
|
|
define Build/sdcard-img
|
|
|
|
./gen_realview_sdcard_img.sh \
|
|
|
|
$(BIN_DIR)/$(IMG_PREFIX)-$(PROFILE)sdcard.img \
|
|
|
|
$(KDIR)/root.ext4 \
|
|
|
|
$(CONFIG_TARGET_ROOTFS_PARTSIZE)
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
2010-11-08 07:31:36 +00:00
|
|
|
$(eval $(call BuildImage))
|