mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-18 04:23:44 +02:00
33d20e9dce
* Rewrote commandline parsing code using gengetopt - We now get long options - We have more options including use of the info section for board information (e.g. to add the same boardid but different GPIOs on different routers) * Added back the ability to write stock images (this is useful, for example, when copying the firmware from the in-memory flash, and then being able to create an image that will let you revert to/test stock firmware * Fixed copying of CRCs to use memcpy instead of strncpy (strncpy stops at 0) * Added ability to use all sections of the imagetag, including custom magic signatures (e.g. for the Telsey router I'm adding soon), info sections, and reserved sections * Added putting the router type (as defined in the image generating Makefile) into the info1 section and the filesystem type in the info2 section. This will be used by mtd (when I add the code) to return the name of image used to flash this router. (As requested by Jo, as well as being useful for same boardid different board scenario described above). git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24011 3c298f89-4303-0410-b956-a3cf2f4a3e73
57 lines
1.3 KiB
Makefile
57 lines
1.3 KiB
Makefile
#
|
|
# Copyright (C) 2006-2008 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME := firmware-utils
|
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
define cc
|
|
$(CC) $(HOST_CFLAGS) -include endian.h -o $(HOST_BUILD_DIR)/bin/$(firstword $(1)) $(foreach src,$(1),src/$(src).c) $(2)
|
|
endef
|
|
|
|
define Host/Compile
|
|
mkdir -p $(HOST_BUILD_DIR)/bin
|
|
$(call cc,addpattern)
|
|
$(call cc,trx)
|
|
$(call cc,motorola-bin)
|
|
$(call cc,dgfirmware)
|
|
$(call cc,trx2usr)
|
|
$(call cc,ptgen)
|
|
$(call cc,airlink)
|
|
$(call cc,srec2bin)
|
|
$(call cc,mkmylofw)
|
|
$(call cc,mkcsysimg)
|
|
$(call cc,mkzynfw)
|
|
$(call cc,lzma2eva,-lz)
|
|
$(call cc,mkcasfw)
|
|
$(call cc,mkfwimage,-lz)
|
|
$(call cc,mkfwimage2,-lz)
|
|
$(call cc,imagetag imagetag_cmdline)
|
|
$(call cc,add_header)
|
|
$(call cc,makeamitbin)
|
|
$(call cc,encode_crc)
|
|
$(call cc,nand_ecc)
|
|
$(call cc,mkplanexfw sha1)
|
|
$(call cc,mktplinkfw md5)
|
|
$(call cc,pc1crypt)
|
|
$(call cc,osbridge-crc)
|
|
$(call cc,wrt400n cyg_crc32)
|
|
$(call cc,wndr3700)
|
|
$(call cc,mkdniimg)
|
|
$(call cc,mktitanimg)
|
|
$(call cc,mkchkimg)
|
|
$(call cc,mkzcfw cyg_crc32)
|
|
endef
|
|
|
|
define Host/Install
|
|
$(INSTALL_BIN) $(HOST_BUILD_DIR)/bin/* $(STAGING_DIR_HOST)/bin/
|
|
endef
|
|
|
|
$(eval $(call HostBuild))
|