1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-01 02:28:54 +03:00

package/mtd: make fixtrx available on ar71xx as well

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24911 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
juhosg 2011-01-05 19:27:55 +00:00
parent 5ceda5f233
commit a4cf24d38a
3 changed files with 4 additions and 3 deletions

View File

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
include $(INCLUDE_DIR)/kernel.mk
PKG_NAME:=mtd
PKG_RELEASE:=14
PKG_RELEASE:=15
PKG_BUILD_DIR := $(KERNEL_BUILD_DIR)/$(PKG_NAME)
STAMP_PREPARED := $(STAMP_PREPARED)_$(call confvar,CONFIG_MTD_REDBOOT_PARTS)

View File

@ -2,6 +2,7 @@ CC = gcc
CFLAGS += -Wall
obj = mtd.o jffs2.o crc32.o
obj.ar71xx = trx.o
obj.brcm = trx.o
obj.brcm47xx = $(obj.brcm)
obj.brcm63xx = imagetag.o

View File

@ -597,8 +597,8 @@ int main (int argc, char **argv)
jffs2dir = optarg;
break;
case 'o':
if (!mtd_fixtrx) {
fprintf(stderr, "-o: Only for brcm47xx/brcm63xx\n");
if (!mtd_fixtrx) {
fprintf(stderr, "-o: is not available on this platform\n");
usage();
}
errno = 0;