mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-23 21:37:10 +02:00
build system: add a feature that allows you to pull sources from a git tree instead of the usual tarball
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28394 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
9f1311dac5
commit
444bd44390
@ -430,6 +430,14 @@ menuconfig DEVEL
|
|||||||
help
|
help
|
||||||
If enabled log files will be written to the ./log directory
|
If enabled log files will be written to the ./log directory
|
||||||
|
|
||||||
|
config SRC_TREE_OVERRIDE
|
||||||
|
bool "Enable package source tree override" if DEVEL
|
||||||
|
help
|
||||||
|
If enabled, you can force a package to use a git tree as source
|
||||||
|
code instead of the normal tarball. Create a symlink 'git-src'
|
||||||
|
in the package directory, pointing to the .git tree that you want
|
||||||
|
to pull the source code from
|
||||||
|
|
||||||
menuconfig TARGET_OPTIONS
|
menuconfig TARGET_OPTIONS
|
||||||
bool "Target Options" if DEVEL
|
bool "Target Options" if DEVEL
|
||||||
|
|
||||||
|
@ -37,6 +37,10 @@ STAMP_BUILT:=$(PKG_BUILD_DIR)/.built
|
|||||||
STAMP_INSTALLED:=$(STAGING_DIR)/stamp/.$(PKG_NAME)_installed
|
STAMP_INSTALLED:=$(STAGING_DIR)/stamp/.$(PKG_NAME)_installed
|
||||||
|
|
||||||
STAGING_FILES_LIST:=$(PKG_NAME)$(if $(BUILD_VARIANT),.$(BUILD_VARIANT),).list
|
STAGING_FILES_LIST:=$(PKG_NAME)$(if $(BUILD_VARIANT),.$(BUILD_VARIANT),).list
|
||||||
|
ifneq ($(if $(CONFIG_SRC_TREE_OVERRIDE),$(wildcard ./git-src)),)
|
||||||
|
USE_GIT_TREE:=1
|
||||||
|
QUILT:=1
|
||||||
|
endif
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/download.mk
|
include $(INCLUDE_DIR)/download.mk
|
||||||
include $(INCLUDE_DIR)/quilt.mk
|
include $(INCLUDE_DIR)/quilt.mk
|
||||||
@ -84,6 +88,14 @@ define Download/default
|
|||||||
MD5SUM:=$(PKG_MD5SUM)
|
MD5SUM:=$(PKG_MD5SUM)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
ifdef USE_GIT_TREE
|
||||||
|
define Build/Prepare/Default
|
||||||
|
mkdir -p $(PKG_BUILD_DIR)
|
||||||
|
ln -s $(CURDIR)/git-src $(PKG_BUILD_DIR)/.git
|
||||||
|
( cd $(PKG_BUILD_DIR); git checkout .)
|
||||||
|
endef
|
||||||
|
endif
|
||||||
|
|
||||||
define Build/Exports/Default
|
define Build/Exports/Default
|
||||||
$(1) : export ACLOCAL_INCLUDE=$$(foreach p,$$(wildcard $$(STAGING_DIR)/usr/share/aclocal $$(STAGING_DIR)/usr/share/aclocal-* $$(STAGING_DIR)/host/share/aclocal $$(STAGING_DIR)/host/share/aclocal-*),-I $$(p))
|
$(1) : export ACLOCAL_INCLUDE=$$(foreach p,$$(wildcard $$(STAGING_DIR)/usr/share/aclocal $$(STAGING_DIR)/usr/share/aclocal-* $$(STAGING_DIR)/host/share/aclocal $$(STAGING_DIR)/host/share/aclocal-*),-I $$(p))
|
||||||
$(1) : export STAGING_PREFIX=$$(STAGING_DIR)/usr
|
$(1) : export STAGING_PREFIX=$$(STAGING_DIR)/usr
|
||||||
@ -97,7 +109,7 @@ Build/Exports=$(Build/Exports/Default)
|
|||||||
|
|
||||||
define Build/DefaultTargets
|
define Build/DefaultTargets
|
||||||
$(if $(QUILT),$(Build/Quilt))
|
$(if $(QUILT),$(Build/Quilt))
|
||||||
$(if $(strip $(PKG_SOURCE_URL)),$(call Download,default))
|
$(if $(USE_GIT_TREE),$(if $(strip $(PKG_SOURCE_URL)),$(call Download,default)))
|
||||||
$(call Build/Autoclean)
|
$(call Build/Autoclean)
|
||||||
|
|
||||||
download:
|
download:
|
||||||
|
Loading…
Reference in New Issue
Block a user