2006-10-16 02:34:22 +03:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 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
|
2007-01-10 23:52:28 +02:00
|
|
|
$(CP) $(LINUX_DIR)/arch/i386/boot/bzImage $(KDIR)/bzImage
|
2006-10-16 02:34:22 +03:00
|
|
|
endef
|
|
|
|
|
2007-04-01 20:10:03 +03:00
|
|
|
define trxalign/jffs2-128k
|
2007-04-17 00:46:44 +03:00
|
|
|
bs=128k
|
2007-04-01 20:10:03 +03:00
|
|
|
endef
|
|
|
|
define trxalign/jffs2-64k
|
2007-04-17 00:46:44 +03:00
|
|
|
bs=64k
|
2007-04-01 20:10:03 +03:00
|
|
|
endef
|
|
|
|
define trxalign/squashfs
|
2007-04-17 00:46:44 +03:00
|
|
|
bs=1024
|
2007-04-01 20:10:03 +03:00
|
|
|
endef
|
|
|
|
|
2007-04-01 14:06:32 +03:00
|
|
|
define Image/Build/Airlink
|
2007-04-17 00:46:44 +03:00
|
|
|
touch $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1)-$(2).img
|
|
|
|
mv $(KDIR)/root.$(1) $(KDIR)/root.tmp
|
|
|
|
dd of=$(KDIR)/root.$(1) if=$(KDIR)/root.tmp $(call trxalign/$(1)) conv=sync
|
|
|
|
rm -f $(KDIR)/root.tmp
|
|
|
|
$(STAGING_DIR)/bin/airlink -b 1 -j $(shell bash -c 'echo $$[$(3)]') $(KDIR)/bzImage $(KDIR)/root.$(1) $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1)-$(2).img
|
2007-04-01 14:06:32 +03:00
|
|
|
endef
|
|
|
|
|
2006-12-20 01:48:47 +02:00
|
|
|
define Image/Build
|
2007-04-01 14:06:32 +03:00
|
|
|
$(CP) $(KDIR)/bzImage $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL).bzImage
|
2007-04-17 00:46:44 +03:00
|
|
|
$(call Image/Build/Airlink,$(1),ar525w,$(patsubst jffs2-%k,%,$(1)))
|
2006-10-16 02:34:22 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildImage))
|