diff options
author | Mike Baker <mbm@openwrt.org> | 2005-03-29 03:32:18 +0000 |
---|---|---|
committer | Mike Baker <mbm@openwrt.org> | 2005-03-29 03:32:18 +0000 |
commit | d61b2533130fe93f4ad8a58d57e3096dcf779446 (patch) | |
tree | 14aafeb7682ae6152530fbe38f88eee7fae53619 /target | |
parent | 6b23703c49c96c2e20263e3ef76f7d5636163f03 (diff) | |
download | upstream-d61b2533130fe93f4ad8a58d57e3096dcf779446.tar.gz upstream-d61b2533130fe93f4ad8a58d57e3096dcf779446.tar.bz2 upstream-d61b2533130fe93f4ad8a58d57e3096dcf779446.zip |
enable CONFIG_NET_RADIO
add preliminary motorola support
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@471 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r-- | target/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/target/Makefile b/target/Makefile index bbb9e74c34..a17a80ffc1 100644 --- a/target/Makefile +++ b/target/Makefile @@ -19,6 +19,14 @@ endif ifeq ($(BR2_TARGET_WRT54GS),y) IMAGE_TARGETS += $(BIN_DIR)/openwrt-wrt54gs-$(1).bin endif + + +$(BIN_DIR)/openwrt-motorola-$(1).bin: $(BIN_DIR)/openwrt-generic-$(patsubst jffs2,jffs2-8MB,$(1)).trx + PATH=$(TARGET_PATH) motorola-bin $$< $$@ + +ifeq ($(BR2_TARGET_MOTOROLA),y) +IMAGE_TARGETS += $(BIN_DIR)/openwrt-motorola-$(1).bin +endif endef TARGET_DIRS:= |