Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • kernel-team/linux
  • fungi/linux
  • jrtc27/linux
  • lopin/linux
  • sjoerd/linux
  • bluca/linux
  • 93sam/linux
  • rperier/linux
  • glaubitz/linux
  • jduerstock-guest/linux
  • corsac/linux
  • apo/linux
  • chschlue-guest/linux
  • carnil/linux
  • vasudev/linux
  • mcayland-guest/linux
  • jmm/linux
  • merker/linux
  • monstr-guest/linux
  • noahm/linux
  • knorrie/linux
  • nsc/linux
  • bengen/linux
  • hrw-guest/linux
  • vicamo-guest/linux
  • deller-guest/linux
  • Aloysius-guest/linux
  • zumbi/linux
  • wookey/linux
  • dannf/linux
  • jcristau/linux
  • eysz7x-guest/linux
  • santiago/linux
  • narmstrong-guest/linux
  • sf/linux
  • vagrant/linux
  • alpernebbi/linux
  • bigon/linux
  • aurel32/linux
  • rtp/linux
  • iwamatsu/linux
  • mikeroyal-guest/linux
  • kibi/linux
  • lkundrak-guest/linux
  • ukleinek/linux
  • zigo/linux
  • thomasw-guest/linux
  • xaiki/linux
  • joerichey-guest/linux
  • gerow-guest/linux
  • pine/linux
  • hepoun-guest/linux
  • cb-guest/linux
  • zx2c4/linux
  • gkourachanis/linux
  • syq/linux
  • jms/linux
  • justin319-guest/linux
  • jiez-guest/linux
  • bampi-guest/linux
  • ajorg/linux
  • malat/linux
  • olasd/linux
  • cheetah-guest/linux
  • orv/linux
  • sudip/linux
  • wlozano-guest/linux
  • pkern/linux
  • marc-git/linux
  • bwerner/linux
  • topimiettinen-guest/linux
  • pommi/linux
  • rbalint/linux
  • johnvillalovos/linux
  • indy/linux
  • shawnguo/linux
  • vblut/linux
  • ribalda/linux
  • ryutaroh/linux
  • txt.file-guest/linux
  • pbatard/linux
  • vvidic/linux
  • dstefura/linux
  • Josua/linux
  • gratuxri/linux
  • smcavoy/linux
  • abalmos/linux
  • ariel.collabora/linux
  • henning.schild/linux
  • hlieberman/linux
  • nmschulte/linux
  • hthiery/linux
  • agx/linux
  • mpearson/linux
  • TS/linux
  • fmoessbauer/linux
  • josch/linux
  • henrich/linux
  • asedeno/linux
  • zhangn1985/linux
  • ericwmackay/linux
  • jmassot/linux
  • mati75/linux
  • pochu/linux
  • zobel/linux
  • odyx/linux
  • kapouer/linux
  • fschrempf/linux
  • zhangboyang/linux
  • obbardc/linux
  • punit/linux
  • pclara/linux
  • kilobyte/linux
  • hubertb/linux
  • waldi/linux
  • miguelinux/linux
  • ema/linux
  • yunseongkim/linux
  • vasi/linux
  • martyn-guest/linux
  • mjeanson/linux
  • daissi/linux
  • fdolcini/linux
  • rsalveti/linux
  • Revy/linux
  • werdahias/linux
  • merge/linux
  • gagath/linux
  • ycongal_smile/linux
  • rettichschnidi/kernel-team-linux
  • flygoat/linux
  • mdmower/debian-linux
  • dmytro-sinina/linux
  • prahal/linux
  • tpearson-raptor/linux
  • lts-team/packages/linux
  • vimerbf-guest/linux
  • vpelletier/linux
  • mmj/linux
  • bananas-team/wip/linux-asahi
  • stuarthayhurst/linux
  • bpoirier-guest/linux
  • steev/linux
  • wcz/linux
  • tpambor/linux
  • terceiro/linux
  • amazingfate/linux
  • undef21/linux
  • jairglez/linux
  • harry88/linux
  • frank-scheiner-guest/linux
  • macpaul_lin_mtk/mediatek-linux-settings
  • Peng_Fan/linux
  • tobhe/linux
  • adaschma/linux
  • zhangdandan/linux
  • shankerwangmiao/linux
  • jan-kiszka/linux
  • wuyy/linux
  • glaweh/linux
  • olljanat/linux
  • ownia/linux
  • black_desk/linux
  • smurf/linux-deb
  • aquilamacedo/linux
  • kees/linux
  • YunguoWei/linux
  • SPYFF/linux
  • sergiodj/linux
  • lumag/linux
  • NoisyCoil/linux-asahi
  • bigeasy/linux
  • mmoll-guest/linux
  • rhansen/linux
  • jspricke/linux
175 results
Show changes
Commits on Source (18)
Showing
with 54 additions and 26 deletions
......@@ -507,7 +507,11 @@ class Gencontrol(Base):
if extra.get('headers_arch_depends'):
extra['headers_arch_depends'].append('%s (= ${binary:Version})' %
packages_own[-1]['Package'])
if do_meta:
# The header meta-packages will be built along with the signed
# packages, to create a dependency relationship that ensures
# src:linux and src:linux-signed-* transition to testing together.
if do_meta and not build_signed:
packages_own.extend(self.process_packages(
self.templates["control.headers.meta"], vars))
self.substitute_debhelper_config(
......
......@@ -203,19 +203,30 @@ class Gencontrol(Base):
packages_meta = self.process_packages(
self.templates['control.image.meta'], vars)
assert len(packages_meta) == 1
packages_meta += self.process_packages(
self.templates['control.headers.meta'], vars)
assert len(packages_meta) == 2
# Don't pretend to support build-profiles
del packages_meta[0]['Build-Profiles']
for package in packages_meta:
del package['Build-Profiles']
packages_own.extend(packages_meta)
cmds_binary_arch += ["$(MAKE) -f debian/rules.real install-meta "
"PACKAGE_NAME='%s' %s" %
(packages_meta[0]['Package'], makeflags)]
cmds_binary_arch += [
"$(MAKE) -f debian/rules.real install-meta "
"PACKAGE_NAME='%s' LINK_DOC_PACKAGE_NAME='%s' %s" %
(package['Package'], package['Depends'][0][0].name, makeflags)
for package in packages_meta
]
self.substitute_debhelper_config(
'image.meta', vars,
'linux-image%(localversion)s' % vars,
output_dir=self.template_debian_dir)
self.substitute_debhelper_config(
'headers.meta', vars,
'linux-headers%(localversion)s' % vars,
output_dir=self.template_debian_dir)
merge_packages(packages, packages_own, arch)
makefile.add('binary-arch_%s_%s_%s_real' % (arch, featureset, flavour),
......@@ -235,15 +246,16 @@ class Gencontrol(Base):
self.write_files_json()
def write_changelog(self):
# We need to insert a new version entry.
# Take the distribution and urgency from the linux changelog, and
# the base version from the changelog template.
# Copy the linux changelog, but:
# * Change the source package name and version
# * Insert a line to refer to refer to the linux source version
vars = self.vars.copy()
vars['source'] = self.changelog[0].source
vars['distribution'] = self.changelog[0].distribution
vars['urgency'] = self.changelog[0].urgency
vars['signedsourceversion'] = (re.sub(r'-', r'+',
vars['imagebinaryversion']))
vars['signedsourceversion'] = \
re.sub(r'\+b(\d+)$', r'.b\1',
re.sub(r'-', r'+', vars['imagebinaryversion']))
with codecs.open(self.template_debian_dir + '/changelog', 'w',
'utf-8') as f:
......
linux (5.5.4-1~exp1) UNRELEASED; urgency=medium
linux (5.5.8-1~exp1) UNRELEASED; urgency=medium
* New upstream release: https://kernelnewbies.org/Linux_5.5
* New upstream stable update:
......@@ -6,6 +6,10 @@ linux (5.5.4-1~exp1) UNRELEASED; urgency=medium
https://www.kernel.org/pub/linux/kernel/v5.x/ChangeLog-5.5.2
https://www.kernel.org/pub/linux/kernel/v5.x/ChangeLog-5.5.3
https://www.kernel.org/pub/linux/kernel/v5.x/ChangeLog-5.5.4
https://www.kernel.org/pub/linux/kernel/v5.x/ChangeLog-5.5.5
https://www.kernel.org/pub/linux/kernel/v5.x/ChangeLog-5.5.6
https://www.kernel.org/pub/linux/kernel/v5.x/ChangeLog-5.5.7
https://www.kernel.org/pub/linux/kernel/v5.x/ChangeLog-5.5.8
[ Ben Hutchings ]
* aufs: Update support patchset to aufs5.x-rcN 20200120; no functional
......@@ -20,6 +24,17 @@ linux (5.5.4-1~exp1) UNRELEASED; urgency=medium
- This patch allowed remotely disabling lockdown using usbip
- Lockdown can be disabled by running "mokutil --disable-validation",
rebooting, and confirming the change when prompted
* Set PYTHON=python3 for document build (fixes FTBFS)
* [x86,arm64] Move linux-headers metapackages to src:linux-signed-*.
This should ensure that src:linux and src:linux-signed-* transition to
testing together.
* debian/bin/gencontrol_signed.py: Generate valid versions in a linux binNMU
* udeb: Drop zlib-modules packages, as zlib_deflate is now always built-in
(fixes FTBFS on several architectures)
* [mips*/octeon] Fix and re-enable the Octeon Ethernet driver
* [mips*] Fix FTBFS:
- Increase RELOCATION_TABLE_SIZE to 0x160000
- Fix exception handler memcpy()
[ Aurelien Jarno ]
* [riscv64] Enable SECCOMP.
......@@ -34,6 +49,9 @@ linux (5.5.4-1~exp1) UNRELEASED; urgency=medium
* [arm64] Enable CONFIG_ARM64_ERRATUM_1418040
* [arm64/cloud-arm64] Introduce cloud build flavour
[ Mark Pearson ]
* [amd64] CONFIG_SND_SOC_SOF_COMETLAKE_LP_SUPPORT and CONFIG_SND_SOC_SOF_COMETLAKE_H_SUPPORT
-- Ben Hutchings <ben@decadent.org.uk> Mon, 20 Jan 2020 01:00:04 +0000
linux (5.5~rc5-1~exp1) experimental; urgency=medium
......
......@@ -241,3 +241,8 @@ CONFIG_ZONE_DEVICE=y
##
CONFIG_LSM_MMAP_MIN_ADDR=65536
##
## file: sound/soc/sof/intel/Kconfig
##
CONFIG_SND_SOC_SOF_COMETLAKE_LP_SUPPORT=y
CONFIG_SND_SOC_SOF_COMETLAKE_H_SUPPORT=y
......@@ -3,7 +3,7 @@
##
CONFIG_CPU_HAS_MSA=y
CONFIG_RELOCATABLE=y
CONFIG_RELOCATION_TABLE_SIZE=0x00140000
CONFIG_RELOCATION_TABLE_SIZE=0x00160000
CONFIG_RANDOMIZE_BASE=y
CONFIG_KEXEC=y
CONFIG_SECCOMP=y
......
#include <zlib-modules>
#include <zlib-modules>
#include <zlib-modules>
#include "../hppa/zlib-modules"
#include <zlib-modules>
......@@ -10,6 +10,9 @@ nls_base
nls_utf8
thermal_sys ?
# In case it becomes modular again
zlib_deflate
# Basic paravirtual modules
hv_utils ?
hv_vmbus ?
......
#include <zlib-modules>
#include <zlib-modules>
#include <zlib-modules>
#include <zlib-modules>
#include <zlib-modules>
#include <zlib-modules>
#include <zlib-modules>
#include <zlib-modules>
#include <zlib-modules>