move target/utils to tools/firmware-utils

SVN-Revision: 5702
v19.07.3_mercusys_ac12_duma
Felix Fietkau 18 years ago
parent 98910471a7
commit ebdcc6d40c

@ -12,10 +12,9 @@ all: install
$(BIN_DIR):
mkdir -p $(BIN_DIR)
TARGETS-y := linux utils
TARGETS-y := linux
TARGETS-$(CONFIG_SDK) += sdk
linux-compile: utils-install
linux-install: $(BIN_DIR)
image_install: linux-install

@ -1,32 +0,0 @@
#
# 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
TARGETS := addpattern trx motorola-bin dgfirmware trx2usr
UTILS_BUILD_DIR:=$(BUILD_DIR)/target-utils
download:
prepare: $(UTILS_BUILD_DIR)
compile: prepare $(patsubst %,$(UTILS_BUILD_DIR)/%,$(TARGETS)) FORCE
mkdir -p $(STAGING_DIR)/bin
$(CP) $(UTILS_BUILD_DIR)/* $(STAGING_DIR)/bin/
install: compile
package:
clean: FORCE
rm -rf $(UTILS_BUILD_DIR)
for f in $(TARGETS); do \
rm -f $(STAGING_DIR)/bin/$$f ; \
done
$(UTILS_BUILD_DIR):
mkdir -p $(UTILS_BUILD_DIR)
$(UTILS_BUILD_DIR)/%: src/%.c
$(CC) -O2 -I $(STAGING_DIR)/include-host -include endian.h -o $@ $(patsubst $(UTILS_BUILD_DIR)/%,src/%.c,$@)
chmod 755 $@

@ -7,7 +7,7 @@
# Main makefile for the host tools
#
include $(TOPDIR)/rules.mk
TARGETS-y:=sed sstrip ipkg-utils ext2fs squashfs mtd-utils lzma mkimage
TARGETS-y:=sed sstrip ipkg-utils ext2fs squashfs mtd-utils lzma mkimage firmware-utils
TARGETS_DOWNLOAD:=$(patsubst %,%-download,$(TARGETS-y))
TARGETS_PREPARE:=$(patsubst %,%-prepare,$(TARGETS-y))

@ -0,0 +1,32 @@
#
# 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)/host-build.mk
PKG_NAME := firmware-utils
PKG_BUILD_DIR:=$(TOOL_BUILD_DIR)/firmware-utils
CFLAGS := -O2 -I $(STAGING_DIR)/include-host -include endian.h
define cc
$(CC) $(CFLAGS) -o $(PKG_BUILD_DIR)/bin/$(1) src/$(1).c
endef
define Build/Compile
mkdir -p $(PKG_BUILD_DIR)/bin
$(call cc,addpattern)
$(call cc,trx)
$(call cc,motorola-bin)
$(call cc,dgfirmware)
$(call cc,trx2usr)
endef
define Build/Install
$(CP) $(PKG_BUILD_DIR)/bin/* $(STAGING_DIR)/bin
endef
$(eval $(call HostBuild))
Loading…
Cancel
Save