diff options
author | kaloz <kaloz@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-05-02 12:48:42 +0000 |
---|---|---|
committer | kaloz <kaloz@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-05-02 12:48:42 +0000 |
commit | 8668f57c7e4ba5438fa9071a4c568dcf31cdfb61 (patch) | |
tree | d63b546aa0050cc27ebdbc50eb20c403c36b1bc7 /target/linux/kirkwood/image/Makefile | |
parent | b130fd7d9eca19bfc766c2211b76a892752e7db6 (diff) |
add preliminary Marvell Kirkwood support
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15556 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/kirkwood/image/Makefile')
-rw-r--r-- | target/linux/kirkwood/image/Makefile | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/target/linux/kirkwood/image/Makefile b/target/linux/kirkwood/image/Makefile new file mode 100644 index 000000000..14ff41cf1 --- /dev/null +++ b/target/linux/kirkwood/image/Makefile @@ -0,0 +1,30 @@ +# +# Copyright (C) 2009 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/Prepare + cp $(LINUX_DIR)/arch/arm/boot/uImage $(KDIR)/uImage +endef + +define Image/BuildKernel +# do mach-id fixup here, if needed +endef + +define Image/Build + $(call Image/Build/$(1),$(1)) +endef + +define Image/Build/squashfs + $(call prepare_generic_squashfs,$(KDIR)/root.squashfs) + ( \ + dd if=$(KDIR)/uImage bs=1024k conv=sync; \ + dd if=$(KDIR)/root.$(1) bs=128k conv=sync; \ + ) > $(BIN_DIR)/openwrt-$(BOARD)-$(1).img +endef + +$(eval $(call BuildImage)) |