Priority: optional
Recommends: libc6-dev | libc-dev, gcc | c-compiler, make (>= 3.80-10), binutils (>= 2.12), util-linux (>= 2.10o)
Suggests: module-init-tools (>= 0.9.10), e2fsprogs (>= 1.29)
-Provides: =ST-headers, =ST-headers-=CV
+Provides: =ST-headers, =ST-headers-=CV, =ST-headers-PB_FLAVOUR
Description: Header files related to Linux kernel, specifically,
version =V
.
Architecture: all
Section: devel
Priority: optional
-Provides: =ST-source, =ST-source-=CV
+Provides: =ST-source, =ST-source-=CV, =ST-source-PB_FLAVOUR
Depends: binutils, bzip2, file
Recommends: libc6-dev | libc-dev, gcc | c-compiler, make (>= 3.80-10), po-debconf, gettext, binutils (>= 2.12), util-linux (>= 2.10o), module-init-tools (>= 0.9.10), debianutils (>= 2.30)
Suggests: libncurses-dev | ncurses-dev, kernel-package, xmlto, libdb3-dev, libncurses-dev, docbook-utils, e2fsprogs (>= 1.29), linux-initramfs-tool, ksymoops
Architecture: =A
Section: kernel
Priority: optional
-Provides: =ST-image, =ST-image-=CV
+Provides: =ST-image, =ST-image-=CV, =ST-image-PB_FLAVOUR
Pre-Depends: debconf (>= 0.2.17) | debconf-2.0
Depends: =I coreutils (>= 5.96)
Suggests: fdutils, =ST-doc-=V=SA | =ST-source-=V, ksymoops, =ST-image-=V=SA-dbg
Section: debug
Priority: optional
Depends: =ST-image-=V=SA
-Provides: =ST-debug, =ST-debug-=CV, =ST-debug-=V=SA
+Provides: =ST-debug, =ST-debug-=CV, =ST-debug-=V=SA, =ST-image-PB_FLAVOUR-debug
Suggests: systemtap
Description: Linux kernel debug image for version =V=SA
This package contains the Linux kernel debug image for version
)
return True
-def build_kernel(version, revision, parallel_jobs='auto', distcc=False):
+def build_kernel(flavour, revision, parallel_jobs='auto', distcc=False):
if parallel_jobs == 'auto':
parallel_jobs = DEFAULT_PARALLEL_JOBS
else:
cmd = [MAKE_KPKG, '-j', '%s' %(parallel_jobs), '--arch',
'%s' %(BUILD_ARCH), '--rootcmd', 'fakeroot',
- '--append-to-version', '-%s' %(version),
+ '--append-to-version', '-%s' %(flavour),
'--initrd', '--arch_in_name'
]
# add targets
if GIT_BRANCH_NAME == 'master' or GIT_BRANCH_NAME.startswith('hotfix'):
cmd += [ 'kernel_doc' ]
- logger.info('start compile process for version %s revision %s' % (version, revision))
+ logger.info('start compile process for flavour %s revision %s' % (flavour, revision))
logger.debug(
'calling "%s" for compiling the kernel' %(' '.join(cmd))