diff options
| author | Waldemar Brodkorb <wbx@openwrt.org> | 2005-09-04 00:03:48 +0000 |
|---|---|---|
| committer | Waldemar Brodkorb <wbx@openwrt.org> | 2005-09-04 00:03:48 +0000 |
| commit | 6c091bc585ed13e37708fe8f97526f2323d1e8a4 (patch) | |
| tree | a308a7ea62294791ade7d73bb172fd273458fbb2 | |
| parent | e94adc91ae1c0e4709c0722d5d3122c05dc482ed (diff) | |
| download | upstream-6c091bc585ed13e37708fe8f97526f2323d1e8a4.tar.gz upstream-6c091bc585ed13e37708fe8f97526f2323d1e8a4.tar.bz2 upstream-6c091bc585ed13e37708fe8f97526f2323d1e8a4.zip | |
link to specific header, just to be safe
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1841 3c298f89-4303-0410-b956-a3cf2f4a3e73
| -rw-r--r-- | openwrt/package/mtd/Makefile | 6 | ||||
| -rw-r--r-- | openwrt/package/mtd/mtd.c | 4 |
2 files changed, 9 insertions, 1 deletions
diff --git a/openwrt/package/mtd/Makefile b/openwrt/package/mtd/Makefile index bfbb301e4c8..b2090a6e49a 100644 --- a/openwrt/package/mtd/Makefile +++ b/openwrt/package/mtd/Makefile @@ -7,6 +7,10 @@ PKG_RELEASE := 1 PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME) +ifeq ($(LINUX_VERSION),2.4.30) +VER=-DLINUX_24 +endif + include $(TOPDIR)/package/rules.mk $(eval $(call PKG_template,MTD,$(PKG_NAME),$(PKG_RELEASE),$(ARCH))) @@ -16,7 +20,7 @@ $(PKG_BUILD_DIR)/.prepared: touch $@ $(PKG_BUILD_DIR)/.built: - $(TARGET_CC) $(TARGET_CFLAGS) -o $(PKG_BUILD_DIR)/mtd mtd.c + $(TARGET_CC) -I$(LINUX_DIR)/include $(VER) $(TARGET_CFLAGS) -o $(PKG_BUILD_DIR)/mtd mtd.c touch $@ $(IPKG_MTD): diff --git a/openwrt/package/mtd/mtd.c b/openwrt/package/mtd/mtd.c index 69ef0649608..e5598649452 100644 --- a/openwrt/package/mtd/mtd.c +++ b/openwrt/package/mtd/mtd.c @@ -40,7 +40,11 @@ #include <sys/reboot.h> #include <string.h> +#ifdef LINUX_24 #include <linux/mtd/mtd.h> +#else +#include <mtd/mtd-user.h> +#endif #define TRX_MAGIC 0x30524448 /* "HDR0" */ #define BUFSIZE (10 * 1024) |
