mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-18 22:43:53 +01:00
mtd-utils: Build mkfs.ubifs
SVN-Revision: 19096
This commit is contained in:
parent
43d56d9b56
commit
5ec88a4a15
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# Copyright (C) 2006 OpenWrt.org
|
# Copyright (C) 2006-2010 OpenWrt.org
|
||||||
#
|
#
|
||||||
# This is free software, licensed under the GNU General Public License v2.
|
# This is free software, licensed under the GNU General Public License v2.
|
||||||
# See /LICENSE for more information.
|
# See /LICENSE for more information.
|
||||||
@ -21,7 +21,7 @@ HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/$(PKG_NAME)-$(PKG_VERSION)
|
|||||||
|
|
||||||
include $(INCLUDE_DIR)/host-build.mk
|
include $(INCLUDE_DIR)/host-build.mk
|
||||||
|
|
||||||
CFLAGS := $(HOST_CFLAGS) -I../include
|
CFLAGS := $(HOST_CFLAGS) -I$(HOST_BUILD_DIR)/include -L$(HOST_BUILD_DIR)
|
||||||
ifneq ($(HOST_OS),Linux)
|
ifneq ($(HOST_OS),Linux)
|
||||||
CFLAGS += -Dloff_t=off_t -D__BYTE_ORDER=BYTE_ORDER -include getline.h -include endian.h
|
CFLAGS += -Dloff_t=off_t -D__BYTE_ORDER=BYTE_ORDER -include getline.h -include endian.h
|
||||||
endif
|
endif
|
||||||
@ -39,17 +39,21 @@ define Host/Compile
|
|||||||
$(MAKE) -C $(HOST_BUILD_DIR)/ubi-utils \
|
$(MAKE) -C $(HOST_BUILD_DIR)/ubi-utils \
|
||||||
$(MTD_MAKEOPTS) \
|
$(MTD_MAKEOPTS) \
|
||||||
TARGETS=ubinize
|
TARGETS=ubinize
|
||||||
|
$(MAKE) -C $(HOST_BUILD_DIR)/mkfs.ubifs \
|
||||||
|
$(MTD_MAKEOPTS) \
|
||||||
|
BUILDDIR="$(HOST_BUILD_DIR)/mkfs.ubifs"
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Host/Install
|
define Host/Install
|
||||||
$(CP) \
|
$(CP) \
|
||||||
$(HOST_BUILD_DIR)/mkfs.jffs2 \
|
$(HOST_BUILD_DIR)/mkfs.jffs2 \
|
||||||
|
$(HOST_BUILD_DIR)/mkfs.ubifs/mkfs.ubifs \
|
||||||
$(HOST_BUILD_DIR)/ubinize \
|
$(HOST_BUILD_DIR)/ubinize \
|
||||||
$(STAGING_DIR_HOST)/bin/
|
$(STAGING_DIR_HOST)/bin/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Host/Clean
|
define Host/Clean
|
||||||
rm -f $(STAGING_DIR_HOST)/bin/mkfs.jffs2
|
rm -f $(STAGING_DIR_HOST)/bin/{mkfs.jffs2,mkfs.ubifs,ubinize}
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(eval $(call HostBuild))
|
$(eval $(call HostBuild))
|
||||||
|
Loading…
Reference in New Issue
Block a user