+
+ LINUX_SOURCE:=linux-$(LINUX_VERSION).tar.bz2
+ TESTING:=$(if $(findstring -rc,$(LINUX_VERSION)),/testing,)
+ ifeq ($(call qstrip,$(CONFIG_EXTERNAL_KERNEL_TREE)),)
+ LINUX_SITE:=@KERNEL/linux/kernel/v$(KERNEL)$(TESTING)
+ endif
+
+ ifneq ($(TARGET_BUILD),1)
+ PKG_BUILD_DIR ?= $(KERNEL_BUILD_DIR)/$(PKG_NAME)$(if $(PKG_VERSION),-$(PKG_VERSION))
+ endif
+endif
+
+ifneq (,$(findstring uml,$(BOARD)))
+ LINUX_KARCH=um
+else
+ ifeq (,$(LINUX_KARCH))
+ LINUX_KARCH=$(strip $(subst i386,x86,$(subst armeb,arm,$(subst mipsel,mips,$(subst mips64,mips,$(subst mips64el,mips,$(subst sh2,sh,$(subst sh3,sh,$(subst sh4,sh,$(ARCH))))))))))
+ endif