~ubuntu-branches/ubuntu/quantal/linux-linaro-mx51/quantal

« back to all changes in this revision

Viewing changes to debian/rules.d/0-common-vars.mk

  • Committer: Package Import Robot
  • Author(s): John Rigby, John Rigby
  • Date: 2011-09-26 10:44:23 UTC
  • Revision ID: package-import@ubuntu.com-20110926104423-3o58a3c1bj7x00rs
Tags: 3.0.0-1007.9
[ John Rigby ]

Enable crypto modules and remove crypto-modules from
exclude-module files
LP: #826021

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
endif
55
55
 
56
56
# Get the kernels own extra version to be added to the release signature.
57
 
extraversion=$(shell awk '/EXTRAVERSION =/ { print $$3 }' <Makefile)
 
57
raw_kernelversion=$(shell make kernelversion)
58
58
 
59
59
#
60
60
# full_build -- are we doing a full buildd style build
69
69
# The debug packages are ginormous, so you probably want to skip
70
70
# building them (as a developer).
71
71
#
72
 
ifeq ($(full_build),false)
73
 
skipdbg=true
74
 
endif
 
72
#ifeq ($(full_build),false)
 
73
#skipdbg=true
 
74
#endif
75
75
 
76
76
abinum          := $(shell echo $(revision) | sed -e 's/\..*//')$(abi_suffix)
77
77
prev_abinum     := $(shell echo $(prev_revision) | sed -e 's/\..*//')$(abi_suffix)
94
94
endif
95
95
endif
96
96
 
97
 
# We force the sublevel to be exactly what we want. The actual source may
98
 
# be an in development git tree. We want to force it here instead of
99
 
# committing changes to the top level Makefile
100
 
SUBLEVEL        := $(shell echo $(release) | awk -F. '{print $$3}')
101
 
 
102
97
DEB_HOST_MULTIARCH = $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
103
98
DEB_HOST_GNU_TYPE  = $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
104
99
DEB_BUILD_GNU_TYPE = $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
219
214
# target_flavour is filled in for each step
220
215
kmake = make ARCH=$(build_arch) \
221
216
        CROSS_COMPILE=$(CROSS_COMPILE) \
222
 
        EXTRAVERSION=-$(abinum)-$(target_flavour) \
223
 
        CONFIG_DEBUG_SECTION_MISMATCH=y SUBLEVEL=$(SUBLEVEL) \
 
217
        KERNELVERSION=$(abi_release)-$(target_flavour) \
 
218
        CONFIG_DEBUG_SECTION_MISMATCH=y \
224
219
        KBUILD_BUILD_VERSION="$(uploadnum)" \
225
220
        LOCALVERSION= localver-extra=
226
221
ifneq ($(LOCAL_ENV_CC),)