# remember the provided package version PKG_VERSION_ORGINAL:=$(PKG_VERSION) # in case that another version is provided, overwrite the original ifeq ($(CONFIG_$(PKG_NAME)_USE_CUSTOM_VERSION),y) PKG_VERSION:=$(call qstrip,$(CONFIG_$(PKG_NAME)_CUSTOM_VERSION)) PKG_SOURCE:=$(subst $(PKG_VERSION_ORGINAL),$(PKG_VERSION),$(PKG_SOURCE)) PKG_MD5SUM:= endif # package specific configuration # if includeded the package version can be overwritten within the .config file (instead of changing the package specific Makefile) define Package/$(PKG_NAME)/override_version menu "overwrite package version" depends on PACKAGE_$(PKG_NAME) config $(PKG_NAME)_USE_CUSTOM_VERSION depends on PACKAGE_$(PKG_NAME) bool "Use custom package version" default n config $(PKG_NAME)_CUSTOM_VERSION depends on $(PKG_NAME)_USE_CUSTOM_VERSION string "$(PKG_BASE_NAME) version as string (default version: $(PKG_VERSION_ORGINAL))" default "$(PKG_VERSION_ORGINAL)" endmenu endef # in case that an customer source path is provided, set the acc. default variable ifeq ($(CONFIG_$(PKG_NAME)_USE_CUSTOM_SOURCE_DIR),y) PKG_DEFAULT_CUSTOM_SOURCE_DIR:= $(call qstrip,$(CONFIG_$(PKG_NAME)_CUSTOM_SOURCE_DIR)) endif # package specific configuration # if includeded the package source path can be overwritten within the .config file (instead of changing the package specific Makefile) # instead of using a source ball (eg tar.gz) the specified path will point to the location of the sources define Package/$(PKG_NAME)/override_source_path menu "custom source directory" depends on PACKAGE_$(PKG_NAME) config $(PKG_NAME)_USE_CUSTOM_SOURCE_DIR depends on PACKAGE_$(PKG_NAME) bool "Use custom source directory" default n config $(PKG_NAME)_CUSTOM_SOURCE_DIR depends on $(PKG_NAME)_USE_CUSTOM_SOURCE_DIR string "Custom source directory" default "$(PKG_DEFAULT_CUSTOM_SOURCE_DIR)" endmenu endef # default: # include both configurations as long this file is included before package.mk # in case that you're defining your own onfiguration within the package Makefile just include the stuff by yourself define Package/$(PKG_NAME)/config $(call Package/$(PKG_NAME)/override_version) $(call Package/$(PKG_NAME)/override_source_path) endef # hook for custom source path # in case that the specified path is valid a link to the PKG_SOURCE_DIR is created # otherwise the make is stopped define prepare_custom_source_directory if [ -d $(CONFIG_$(PKG_NAME)_CUSTOM_SOURCE_DIR) ]; then \ rm -Rf $(PKG_BUILD_DIR); \ echo "Preparing Custom Source Directory link: $(CONFIG_$(PKG_NAME)_CUSTOM_SOURCE_DIR)"; \ ln -snf $(CONFIG_$(PKG_NAME)_CUSTOM_SOURCE_DIR) $(PKG_BUILD_DIR); \ else \ echo "Custom Source Directory $(CONFIG_$(PKG_NAME)_CUSTOM_SOURCE_DIR) is invalid"; \ false; \ fi endef type='hidden' name='id' value='4cb9d9715cb4b1f807ee94fc082679882fc45275'/>
path: root/include/kernel-version.mk
blob: 9733be0f3d8560ed1e94a2d45f3afbbf961d1c45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Use the default kernel version if the Makefile doesn't override it

LINUX_RELEASE?=1

ifeq ($(LINUX_VERSION),3.3.8)
  LINUX_KERNEL_MD5SUM:=f1058f64eed085deb44f10cee8541d50
endif
ifeq ($(LINUX_VERSION),3.6.11)
  LINUX_KERNEL_MD5SUM:=3d602ad7f7984509c3e923a5ae90bc54
endif
ifeq ($(LINUX_VERSION),3.7.10)
  LINUX_KERNEL_MD5SUM:=09624c3702107076efcac5e1cd8a18ec
endif
ifeq ($(LINUX_VERSION),3.8.12)
  LINUX_KERNEL_MD5SUM:=a4be720ca9e61445562565856bb5154d
endif
ifeq ($(LINUX_VERSION),3.9.1)
  LINUX_KERNEL_MD5SUM:=913bbf85c65f3e587a5000763374b4aa
endif

# disable the md5sum check for unknown kernel versions
LINUX_KERNEL_MD5SUM?=x

split_version=$(subst ., ,$(1))
merge_version=$(subst $(space),.,$(1))
KERNEL_BASE=$(firstword $(subst -, ,$(LINUX_VERSION)))
KERNEL=$(call merge_version,$(wordlist 1,2,$(call split_version,$(KERNEL_BASE))))
ifeq ($(firstword $(call split_version,$(KERNEL_BASE))),2)
  KERNEL_PATCHVER=$(call merge_version,$(wordlist 1,3,$(call split_version,$(KERNEL_BASE))))
else
  KERNEL_PATCHVER=$(KERNEL)
endif