2007-03-05 01:29:44 +08: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 Build/Clean
|
2007-03-20 17:59:17 +08:00
|
|
|
$(MAKE) -C romboot clean
|
|
|
|
$(MAKE) -C u-boot clean
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
$(MAKE) -C romboot compile
|
|
|
|
# $(MAKE) -C u-boot configure
|
|
|
|
$(MAKE) -C u-boot compile
|
2007-03-23 18:24:01 +08:00
|
|
|
$(KDIR)/u-boot-1.1.4/tools/ubparams
|
|
|
|
cp params $(KDIR)
|
2007-03-05 01:29:44 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Prepare
|
|
|
|
cp $(LINUX_DIR)/arch/arm/boot/uImage $(KDIR)/uImage
|
2007-03-20 17:59:17 +08:00
|
|
|
cp $(KDIR)/romboot/romboot.bin $(KDIR)/romboot.bin
|
2007-03-24 20:54:38 +08:00
|
|
|
cp $(KDIR)/romboot/rbptest.bin $(KDIR)/rbptest.bin
|
2007-03-20 17:59:17 +08:00
|
|
|
cp $(KDIR)/u-boot-1.1.4/u-boot.bin $(KDIR)/u-boot.bin
|
2007-03-23 18:24:01 +08:00
|
|
|
dd if=$(KDIR)/u-boot.bin of=$(KDIR)/u-boot.block bs=100k count=1 conv=sync
|
|
|
|
cat $(KDIR)/u-boot.block $(KDIR)/params > $(KDIR)/u-boot.full
|
2007-03-05 01:29:44 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/BuildKernel
|
|
|
|
cp $(KDIR)/uImage $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-uImage
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build
|
2007-03-23 18:24:01 +08:00
|
|
|
dd if=$(KDIR)/uImage of=$(KDIR)/uImage.block bs=1056k count=1 conv=sync
|
2007-04-21 23:01:45 +08:00
|
|
|
dd if=$(KDIR)/root.squashfs of=$(KDIR)/root.block bs=2112k count=1 conv=sync
|
2007-03-23 18:24:01 +08:00
|
|
|
cat $(KDIR)/uImage.block $(KDIR)/root.block > $(KDIR)/knlroot.bin
|
|
|
|
$(STAGING_DIR)/bin/trx -o $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL).trx -f $(KDIR)/romboot.bin -f$(KDIR)/u-boot.full -f$(KDIR)/knlroot.bin
|
2007-03-24 20:54:38 +08:00
|
|
|
cp $(KDIR)/rbptest.bin $(BIN_DIR)
|
2007-03-05 01:29:44 +08:00
|
|
|
$(call Image/Build/$(1),$(1))
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildImage))
|