mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-26 08:10:37 +02:00
link to specific header, just to be safe
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1841 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
8821f2c334
commit
06768f3ee0
@ -7,6 +7,10 @@ PKG_RELEASE := 1
|
|||||||
|
|
||||||
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
||||||
|
|
||||||
|
ifeq ($(LINUX_VERSION),2.4.30)
|
||||||
|
VER=-DLINUX_24
|
||||||
|
endif
|
||||||
|
|
||||||
include $(TOPDIR)/package/rules.mk
|
include $(TOPDIR)/package/rules.mk
|
||||||
|
|
||||||
$(eval $(call PKG_template,MTD,$(PKG_NAME),$(PKG_RELEASE),$(ARCH)))
|
$(eval $(call PKG_template,MTD,$(PKG_NAME),$(PKG_RELEASE),$(ARCH)))
|
||||||
@ -16,7 +20,7 @@ $(PKG_BUILD_DIR)/.prepared:
|
|||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
$(PKG_BUILD_DIR)/.built:
|
$(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 $@
|
touch $@
|
||||||
|
|
||||||
$(IPKG_MTD):
|
$(IPKG_MTD):
|
||||||
|
@ -40,7 +40,11 @@
|
|||||||
#include <sys/reboot.h>
|
#include <sys/reboot.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
#ifdef LINUX_24
|
||||||
#include <linux/mtd/mtd.h>
|
#include <linux/mtd/mtd.h>
|
||||||
|
#else
|
||||||
|
#include <mtd/mtd-user.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#define TRX_MAGIC 0x30524448 /* "HDR0" */
|
#define TRX_MAGIC 0x30524448 /* "HDR0" */
|
||||||
#define BUFSIZE (10 * 1024)
|
#define BUFSIZE (10 * 1024)
|
||||||
|
Loading…
Reference in New Issue
Block a user