Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion arch/arm/configs/odroidxu3_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -4243,7 +4243,7 @@ CONFIG_AVERAGE=y
CONFIG_OID_REGISTRY=m
# CONFIG_VIRTUALIZATION is not set
CONFIG_BACKPORT_INTEGRATE=y
CONFIG_BACKPORT_DIR="backports/"
CONFIG_BACKPORT_DIR="backports"
CONFIG_BACKPORT_VERSION="backports-20150222-0-g2745ccd"
CONFIG_BACKPORT_KERNEL_VERSION="next-20150222-0-g53e418f1"
CONFIG_BACKPORT_KERNEL_NAME="Linux"
Expand Down
2 changes: 1 addition & 1 deletion backports/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ config BACKPORT_INTEGRATE

config BACKPORT_DIR
string
default "backports/"
default "backports"

config BACKPORT_VERSION
string
Expand Down
7 changes: 6 additions & 1 deletion backports/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,12 @@ NOSTDINC_FLAGS := \

export backport_srctree = $(M)
else
export BACKPORT_DIR = backports/
ifneq ($(KBUILD_SRC),)
ifneq ($(wildcard $(KBUILD_SRC)/$(src)),)
TOP_KBUILD_SRC := $(KBUILD_SRC)/
endif
endif
export BACKPORT_DIR = $(TOP_KBUILD_SRC)backports
export backport_srctree = $(BACKPORT_DIR)
NOSTDINC_FLAGS := \
-I$(BACKPORT_DIR)/backport-include/ \
Expand Down