2006-06-27 00:35:46 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2006-06-21 03:13:25 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
2006-06-21 02:32:39 +00:00
|
|
|
include $(INCLUDE_DIR)/image.mk
|
2006-04-11 12:39:33 +00:00
|
|
|
|
2006-06-04 21:57:59 +00:00
|
|
|
define Build/Clean
|
|
|
|
endef
|
2006-04-11 12:39:33 +00:00
|
|
|
|
2006-06-04 21:57:59 +00:00
|
|
|
define Image/Prepare
|
|
|
|
endef
|
2006-05-30 19:38:38 +00:00
|
|
|
|
2006-06-04 21:57:59 +00:00
|
|
|
define Image/Build
|
2006-07-02 15:11:55 +00:00
|
|
|
$(TARGET_CROSS)objcopy -O srec -I binary --adjust-vma 0xbe000000 $(KDIR)/root.$(1) $(KDIR)/root.$(1).srec
|
|
|
|
grep -v S7 $(KDIR)/root.$(1).srec > $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1).img
|
2006-06-04 21:57:59 +00:00
|
|
|
grep -v S0 $(LINUX_DIR)/arch/mips/boot/compressed/images/zImage.flash.srec >> $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1).img
|
|
|
|
endef
|
2006-04-11 12:39:33 +00:00
|
|
|
|
2006-06-04 21:57:59 +00:00
|
|
|
$(eval $(call BuildImage))
|